feat(crypto): Add support for verification violation warnings #3575
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 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/[email protected] | |
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 }} |