[Main] - New Updates ✨ #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Danger | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
Danger: | |
runs-on: macos-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.2' | |
- name: Danger Stage | |
run: | | |
brew install danger/tap/danger-js | |
swift build | |
swift run danger-swift --verbose | |
echo "Danger Lint stage complete." | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |