Skip to content

Commit aedbdfa

Browse files
authored
Drop support for old Node versions (#732)
1 parent d235ef0 commit aedbdfa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
node-version: [14.x, 16.x, 18.x, 20.x, 22.x, 23.x]
18+
node-version: [18.x, 20.x, 22.x, 23.x]
1919
jest-version: [27, 28, 29]
2020
runs-on: ubuntu-latest
2121
steps:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"jest-get-type": "^29.0.0"
6565
},
6666
"engines": {
67-
"node": "^14.15.0 || ^16.10.0 || ^18.12.0 || ^20.9.0 || ^22.11.0 || >=23.0.0"
67+
"node": "^18.12.0 || ^20.9.0 || ^22.11.0 || >=23.0.0"
6868
},
6969
"lint-staged": {
7070
"*.js": "eslint --fix",

0 commit comments

Comments
 (0)