Skip to content

Commit 8590791

Browse files
Fix minimum Node version to 20.19 (not 22.19)
Co-authored-by: NullVoxPopuli <[email protected]>
1 parent 573e2d5 commit 8590791

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ ubuntu, windows ]
34-
node-version: [22.x, 24.x]
34+
node-version: [20.x, 22.x, 24.x]
3535

3636
steps:
3737
- uses: actions/checkout@v6

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
## ❗️Requirements
1010

1111
- [ESLint](https://eslint.org/) `>= 8`
12-
- [Node.js](https://nodejs.org/) `>= 22.19`
12+
- [Node.js](https://nodejs.org/) `>= 20.19`
1313

1414
## 🚀 Usage
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
},
121121
"packageManager": "[email protected]",
122122
"engines": {
123-
"node": ">= 22.19"
123+
"node": ">= 20.19"
124124
},
125125
"volta": {
126126
"node": "24.14.0",

0 commit comments

Comments
 (0)