Skip to content

Commit 060b74e

Browse files
committed
ci: use Node.js 22 as builder
1 parent 02738a8 commit 060b74e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dev-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
- run: npm ci
2121
- run: npm test
2222
env:

.github/workflows/npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
- run: npm ci
2323
- run: npm test
2424
env:

.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- name: Use Node.js 20.x
10+
- name: Use Node.js 22.x
1111
uses: actions/setup-node@v4
1212
with:
13-
node-version: 20.x
13+
node-version: 22.x
1414
- run: npm ci
1515
- run: |
1616
npm run build
@@ -128,10 +128,10 @@ jobs:
128128
ts: [4, 5]
129129
steps:
130130
- uses: actions/checkout@v4
131-
- name: Use Node.js 20.x
131+
- name: Use Node.js 22.x
132132
uses: actions/setup-node@v4
133133
with:
134-
node-version: 20.x
134+
node-version: 22.x
135135
- name: Install deps
136136
run: npm ci
137137
- name: Install TypeScript ${{ matrix.ts }}

0 commit comments

Comments
 (0)