Skip to content

Commit

Permalink
feat: drop support for Node versions 12 and 17 (#1211)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node versions 12 and 17 are no longer supported
  • Loading branch information
SimenB committed Aug 23, 2022
1 parent 966fe5c commit 4c987f5
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: [12.x, 14.x, 16.x, 17.x, 18.x]
node-version: [14.x, 16.x, 18.x]
eslint-version: [6, 7, 8]
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -153,6 +153,6 @@
},
"packageManager": "yarn@3.2.2",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
}

0 comments on commit 4c987f5

Please sign in to comment.