Skip to content

Commit a3e953f

Browse files
authored
feat: drop support for Node v14 (#232)
BREAKING CHANGE: drop support for Node v14
1 parent c28a92e commit a3e953f

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/nodejs.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,12 @@ jobs:
7171
strategy:
7272
fail-fast: false
7373
matrix:
74-
node-version: [14.x, 16.x, 18.x, 19.x, 20.x, 21.x]
74+
node-version: [16.x, 18.x, 19.x, 20.x, 21.x]
7575
eslint-version: [7, 8, 9]
7676
exclude:
7777
# eslint@9 doesn't support node@16
7878
- node-version: 16.x
7979
eslint-version: 9
80-
# eslint@9 doesn't support node@14
81-
- node-version: 14.x
82-
eslint-version: 9
8380
runs-on: ubuntu-latest
8481

8582
steps:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@
123123
},
124124
"packageManager": "[email protected]",
125125
"engines": {
126-
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
126+
"node": "^16.10.0 || >=18.0.0"
127127
}
128128
}

0 commit comments

Comments
 (0)