Skip to content

Commit

Permalink
ci: install Node.js in Slither job
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRBerg committed Dec 4, 2023
1 parent 9a5296d commit 9f22b65
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,20 @@ jobs:
- name: "Check out the repo"
uses: "actions/checkout@v3"

- name: "Install Pnpm"
uses: "pnpm/action-setup@v2"
with:
version: "8"

- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
cache: "pnpm"
node-version: "lts/*"

- name: "Install the Node.js dependencies"
run: "pnpm install"

- name: "Run Slither"
uses: "crytic/[email protected]"
id: "slither-run"
Expand Down

0 comments on commit 9f22b65

Please sign in to comment.