Skip to content

Commit 278d79d

Browse files
committed
chore: include Node.js 22 in CI
Signed-off-by: dhmlau <[email protected]>
1 parent 15426bf commit 278d79d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19-
node-version: [18, 20]
19+
node-version: [18, 20, 22]
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
@@ -39,10 +39,10 @@ jobs:
3939
timeout-minutes: 60
4040
steps:
4141
- uses: actions/checkout@v4
42-
- name: Use Node.js 18
42+
- name: Use Node.js 20
4343
uses: actions/setup-node@v4
4444
with:
45-
node-version: 18
45+
node-version: 20
4646
- name: Bootstrap project
4747
run: |
4848
npm ci --ignore-scripts
@@ -57,10 +57,10 @@ jobs:
5757
- uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0
60-
- name: Use Node.js 18
60+
- name: Use Node.js 20
6161
uses: actions/setup-node@v4
6262
with:
63-
node-version: 18
63+
node-version: 20
6464
- name: Bootstrap project
6565
run: |
6666
npm ci --ignore-scripts

0 commit comments

Comments
 (0)