Update Hello and Swap to authenticated calls #221
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: 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: "examples/call" | |
file: "call.sarif" | |
- project: "examples/swap" | |
file: "swap.sarif" | |
- project: "examples/nft" | |
file: "nft.sarif" | |
- project: "examples/token" | |
file: "token.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}} |