Skip to content

Commit db659f0

Browse files
authored
refactor!: use Node.js v22 as minimum & move CI to v24.x (#533)
1 parent d47a68d commit db659f0

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node-version: [20.x, 22.x]
21+
node-version: [22.x, 24.x]
2222
fail-fast: false
2323
steps:
2424
- name: Harden Runner

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{matrix.os}}
1414
strategy:
1515
matrix:
16-
node-version: [20.x, 22.x]
16+
node-version: [22.x, 24.x]
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818
fail-fast: false
1919
steps:

.github/workflows/server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node-version: [20.x, 22.x]
21+
node-version: [22.x, 24.x]
2222
fail-fast: false
2323
steps:
2424
- name: Harden Runner

.github/workflows/size-satisfies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node-version: [20.x, 22.x]
21+
node-version: [22.x, 24.x]
2222
fail-fast: false
2323
steps:
2424
- name: Harden Runner

.github/workflows/vis-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node-version: [20.x, 22.x]
21+
node-version: [22.x, 24.x]
2222
fail-fast: false
2323
steps:
2424
- name: Harden Runner

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
## 🚧 Requirements
4646

47-
- [Node.js](https://nodejs.org/en/) v20 or higher
47+
- [Node.js](https://nodejs.org/en/) v22 or higher
4848

4949
## 💃 Getting Started
5050

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"type": "module",
1111
"engines": {
12-
"node": ">=20"
12+
"node": ">=22"
1313
},
1414
"scripts": {
1515
"lint": "eslint bin src test workspaces public",

0 commit comments

Comments
 (0)