Skip to content

Update GitHub Actions workflow to trigger on pull requests #28

Update GitHub Actions workflow to trigger on pull requests

Update GitHub Actions workflow to trigger on pull requests #28

Workflow file for this run

name: Slither Analysis
on:
pull_request:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
slither-version: '0.10.0'
node-version: '18'
fail-on: 'none'
slither-args: '--filter-paths "contracts/mock|node_modules" --checklist --markdown-root ${{ github.server_url }}/${{ github.repository }}/blob/${{ github.sha }}/contracts/'
- name: Create/update checklist as PR comment
uses: actions/github-script@v7
env:
REPORT: ${{ steps.slither.outputs.stdout }}
with:
script: |
const script = require('.github/scripts/comment')
const header = '# Slither report'
const body = process.env.REPORT
await script({ github, context, header, body })