Skip to content

Commit 5d3039b

Browse files
committedMar 22, 2025
chore: retire node 18.x and use node 22.x as default
1 parent 7c223aa commit 5d3039b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
 

‎.github/workflows/0-core-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [18.x, 20.x, 22.x]
12+
node-version: [20.x, 22.x]
1313

1414
steps:
1515
- uses: actions/checkout@v3

‎.github/workflows/1-e2e-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [18.x, 20.x, 22.x]
12+
node-version: [20.x, 22.x]
1313

1414
steps:
1515
- uses: actions/checkout@v3

‎.github/workflows/2-package-test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-node@v3
1515
with:
16-
node-version: 20
16+
node-version: 22
1717
cache: 'npm'
1818
- name: Install @formidablejs/installer
1919
run: npm i -g @formidablejs/installer
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- uses: actions/setup-node@v3
2929
with:
30-
node-version: 20
30+
node-version: 22
3131
cache: 'npm'
3232
- name: Install @formidablejs/installer
3333
run: npm i -g @formidablejs/installer
@@ -46,7 +46,7 @@ jobs:
4646
bun-version: latest
4747
- uses: actions/setup-node@v3
4848
with:
49-
node-version: 20
49+
node-version: 22
5050
cache: 'npm'
5151
- name: Install @formidablejs/installer
5252
run: npm i -g @formidablejs/installer
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/checkout@v3
6161
- uses: actions/setup-node@v3
6262
with:
63-
node-version: 20
63+
node-version: 22
6464
cache: 'npm'
6565
- name: Install @formidablejs/installer
6666
run: npm i -g @formidablejs/installer

‎.github/workflows/automated.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- name: Start Redis
1515
uses: supercharge/redis-github-action@1.4.0
16-
- name: Use Node.js 20
16+
- name: Use Node.js 22
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 20
19+
node-version: 22
2020
cache: 'npm'
2121
- run: npm ci
2222
- run: npm run build

0 commit comments

Comments
 (0)
Failed to load comments.