Skip to content

Commit

Permalink
slither-action
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Jul 19, 2024
1 parent 7c76c37 commit 444cb43
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,26 @@ jobs:
run: yarn ci

- name: Coverage
run: yarn coverage
run: yarn coverage

analyze:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
node-version: 16
sarif: results.sarif
fail-on: none

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.slither.outputs.sarif }}

0 comments on commit 444cb43

Please sign in to comment.