Skip to content

Commit 121b5e2

Browse files
author
Peter Bengtsson
authored
Merge pull request #28 from github/ci-test-with-node-20
CI test with Node 20
2 parents ceac2b2 + d50fada commit 121b5e2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v2
9-
- name: Use Node.js 16.x
9+
- name: Use Node.js 20.x
1010
uses: actions/setup-node@v2
1111
with:
12-
node-version: 16.x
12+
node-version: 20.x
1313
- name: npm install, build, and test
1414
run: |
1515
npm install
1616
npm run build --if-present
1717
npm test
1818
env:
1919
CI: true
20-

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 20
1515
registry-url: https://registry.npmjs.org/
1616
cache: npm
1717
- run: npm ci

0 commit comments

Comments
 (0)