-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add slither workflow Signed-off-by: Francisco de Borja Aranda Castillejo <[email protected]>
- Loading branch information
Francisco de Borja Aranda Castillejo
authored
Jul 12, 2024
1 parent
432ed72
commit b55d0e8
Showing
2 changed files
with
66 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Slither | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- "*" | ||
types: | ||
- synchronize | ||
- opened | ||
- reopened | ||
- ready_for_review | ||
|
||
jobs: | ||
slither: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
include: | ||
- project: "zeta-app-contracts" | ||
file: "zeta.sarif" | ||
- project: "zevm-app-contracts" | ||
file: "zevm.sarif" | ||
permissions: | ||
contents: read | ||
security-events: write | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "18" | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Compile contracts | ||
continue-on-error: true | ||
run: yarn compile | ||
|
||
- name: Run Slither on ${{ matrix.project}} | ||
uses: crytic/slither-action@main | ||
continue-on-error: true | ||
with: | ||
ignore-compile: true | ||
sarif: ${{ matrix.file}} | ||
node-version: "18" | ||
target: packages/${{ matrix.project}} | ||
fail-on: none | ||
|
||
- name: Upload zevm-app-contracts SARIF file | ||
uses: github/codeql-action/upload-sarif@v3 | ||
with: | ||
sarif_file: ${{ matrix.file}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"detectors_to_exclude": "", | ||
"compile_force_framework": "hardhat", | ||
"hardhat_ignore_compile": true, | ||
"npx_disable": true, | ||
"filter_paths": "artifacts,cache,data,dist,docs,lib,node_modules,pkg,scripts,tasks,test,testing,typechain-types" | ||
} |