Skip to content

Commit

Permalink
Use v20 for installing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwilliams committed Mar 13, 2024
1 parent c11b993 commit 7fa5203
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/testAndPublishOnTag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: '20'
- run: npm ci
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm run build
- run: npm run test

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/testOnPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version: '20'
- run: npm ci
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm run build
- run: npm run test

0 comments on commit 7fa5203

Please sign in to comment.