Skip to content

Commit bcd8d11

Browse files
authored
fix: stop testing on Node 10 and 15 (#891)
BREAKING CHANGE: Drop support for Node 10 and 15
1 parent 9aeaf24 commit bcd8d11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
70+
node-version: [12.x, 14.x, 16.x]
7171
eslint-version: [5, 6, 7]
7272
runs-on: ubuntu-latest
7373

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
}
132132
},
133133
"engines": {
134-
"node": ">=10"
134+
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
135135
},
136136
"release": {
137137
"branches": [

0 commit comments

Comments
 (0)