Change targetApi to 35 #3795
Workflow file for this run
This file contains hidden or 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 CI | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Danger | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| npm install --save-dev @babel/plugin-transform-flow-strip-types | |
| - name: Danger | |
| uses: danger/danger-js@11.2.6 | |
| with: | |
| args: "--dangerfile ./tools/danger/dangerfile.js" | |
| env: | |
| DANGER_GITHUB_API_TOKEN: ${{ secrets.DANGER_GITHUB_API_TOKEN }} | |
| # Fallback for forks | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |