Skip to content

Commit ae80da8

Browse files
committed
fix node supported to 20 only
1 parent 1f85c99 commit ae80da8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
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']
12+
node-version: ['20.x']
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -21,4 +21,4 @@ jobs:
2121
- name: Install dependencies
2222
run: npm i
2323
- name: Running tests
24-
run: npm test
24+
run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@
6767
"custom_plugins": "NODE_ENV=test_with_custom_plugins PORT=8080 mocha --exit test/custom_plugins.js"
6868
},
6969
"engines": {
70-
"node": ">=18.0"
70+
"node": ">=20.18"
7171
}
7272
}

0 commit comments

Comments
 (0)