Skip to content

Commit

Permalink
Uncomment slither GA (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
zajck authored Oct 24, 2023
1 parent a3d464c commit 9cc931b
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,34 +194,34 @@ jobs:
if: failure()
uses: andymckay/[email protected]

# analyze:
# needs: setup
# runs-on: ubuntu-latest
# permissions:
# contents: read
# security-events: write
# steps:
# - name: Checkout repository
# uses: actions/[email protected]
# - name: Setup node
# uses: actions/[email protected]
# with:
# node-version: 16.14.x
# cache: "npm"
# - name: Install Dependencies
# run: npm install
# - name: Prepare Environment
# shell: bash
# run: |
# cp .env.example .env
# - name: Slither analyzer
# 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@v2
# with:
# sarif_file: ${{ steps.slither.outputs.sarif }}
analyze:
needs: setup
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup node
uses: actions/[email protected]
with:
node-version: 16.14.x
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Prepare Environment
shell: bash
run: |
cp .env.example .env
- name: Slither analyzer
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@v2
with:
sarif_file: ${{ steps.slither.outputs.sarif }}

0 comments on commit 9cc931b

Please sign in to comment.