Files
letro-ios/.github/workflows/danger.yml
Stefan Ceriu 702527aed6 Various CI fixes (#161)
* Update homebrew dependencies like on the other workflows. Fixes problems caused by buggy swiftformat prebundled on the github actions macos runner

* Removed UI tests from PR tests and running them on a schedule instead. Hopefuly fixed code coverage.

* Added back simulator versions as they need to match UI test snapshots

* Allow UI tests to run on this PR

* Added back skipped UI tests

* Fix danger sometimes not working on forks and disable integration tests on them
2022-08-19 17:42:03 +03:00

21 lines
418 B
YAML

name: Danger CI
on: [pull_request]
jobs:
build:
name: Danger
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: ~/.danger-swift
key: danger-swift-cache-key
- name: Danger
uses: docker://ghcr.io/danger/danger-swift-with-swiftlint:3.12.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}