Skip to content

Commit

Permalink
Switch GitHub Actions to an LTS version of Node (15 -> 16) (#2892)
Browse files Browse the repository at this point in the history
This should clear up a bunch of version support warnings in
dependencies. Also, in another PR I noticed that `npm ci` for some
reason didn't catch when package-lock.json wasn't updated. Hoping that
this will also fix that.
  • Loading branch information
kainino0x authored Aug 11, 2023
1 parent 000fd14 commit 56b351f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
git checkout ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v2-beta
with:
node-version: "15.x"
node-version: "16.x"
- run: npm ci
- run: npm test
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v2-beta
with:
node-version: "15.x"
node-version: "16.x"
- run: npm ci
- run: |
npm test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: "15.x"
node-version: "16.x"
- run: npm ci
- run: npm run wpt
- name: copy out-wpt to wpt tree
Expand Down

0 comments on commit 56b351f

Please sign in to comment.