Skip to content

Commit 6855000

Browse files
authored
fix: revert "fix: require node v22"; fixes #1398 (#1402)
This reverts commit f85ffc6. to allow Node v20.11.0+
1 parent f85ffc6 commit 6855000

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/feature.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: setup node.js
1414
uses: actions/setup-node@v4
1515
with:
16-
node-version: '22'
16+
node-version: '20.11.0'
1717
- run: pnpm install
1818
- run: pnpm build
1919
- run: pnpm lint
@@ -40,6 +40,7 @@ jobs:
4040
fail-fast: false
4141
matrix:
4242
node_js_version:
43+
- '20.11.0'
4344
- '22'
4445
build:
4546
runs-on: ubuntu-latest
@@ -55,7 +56,7 @@ jobs:
5556
- name: setup node.js
5657
uses: actions/setup-node@v4
5758
with:
58-
node-version: '22'
59+
node-version: '20.11.0'
5960
- run: pnpm install
6061
- run: pnpm build
6162
timeout-minutes: 10

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"typescript-eslint": "^8.33.0"
7272
},
7373
"engines": {
74-
"node": ">=22"
74+
"node": ">=20.11.0"
7575
},
7676
"keywords": [
7777
"eslint",

0 commit comments

Comments
 (0)