Skip to content

Commit

Permalink
update ci to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
zkbenny committed Feb 4, 2024
1 parent 8874c7d commit e5a30db
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,18 @@ jobs:
- name: Clone repo
uses: actions/checkout@v3
- name: Setup node environment
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20.x
- uses: actions/cache@v4
id: cache
with:
path: '**/node_modules'
key: npm-v3-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
shell: bash
if: steps.cache.outputs.cache-hit != 'true'
- name: Lint check
run: npm run lint
- name: Compile contracts
Expand Down

0 comments on commit e5a30db

Please sign in to comment.