Skip to content

Commit

Permalink
fix: stop testing on Node 10 and 15 (#891)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop support for Node 10 and 15
  • Loading branch information
SimenB committed Sep 13, 2021
1 parent 9aeaf24 commit bcd8d11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 15.x, 16.x]
node-version: [12.x, 14.x, 16.x]
eslint-version: [5, 6, 7]
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -131,7 +131,7 @@
}
},
"engines": {
"node": ">=10"
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
},
"release": {
"branches": [
Expand Down

0 comments on commit bcd8d11

Please sign in to comment.