Skip to content

Commit

Permalink
ci: add slither integration
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco de Borja Aranda Castillejo <[email protected]>
  • Loading branch information
Francisco de Borja Aranda Castillejo committed Jul 11, 2024
1 parent 7027c0f commit e500ada
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/slither.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
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: 'messaging/erc20'
file: 'm-erc20.sarif'
- project: 'messaging/message'
file: 'm-message.sarif'
- project: 'messaging/nft'
file: 'm-nft.sarif'
- project: 'messaging/zeta'
file: 'm-zeta.sarif'
- project: 'omnichain/multioutput'
file: 'o-multioutput.sarif'
- project: 'omnichain/nft'
file: 'o-nft.sarif'
- project: 'omnichain/staking'
file: 'o-staking.sarif'
- project: 'omnichain/swap'
file: 'o-swap.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: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Build projects
continue-on-error: true
run: yarn build

- 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: ${{ matrix.project}}
fail-on: none

- name: Upload zevm-app-contracts SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ matrix.file}}
8 changes: 8 additions & 0 deletions slither.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"detectors_to_exclude": "",
"compile_force_framework": "hardhat",
"hardhat_ignore_compile": true,
"npx_disable": true,
"foundry_ignore_compile": true,
"filter_paths": "artifacts,cache,data,dist,docs,lib,node_modules,pkg,scripts,tasks,test,testing,typechain-types"
}

0 comments on commit e500ada

Please sign in to comment.