Skip to content

Commit

Permalink
Remove unsupported Node versions and add Node 18 (#450)
Browse files Browse the repository at this point in the history
* Remove Node 12

* Remove Node 17

* Support Node 16 LTS (not all 16.x)

* Support Node 18
  • Loading branch information
keeganwitt committed Jun 6, 2022
1 parent f7c9c80 commit 9ff8eae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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]
jest-version: [27]
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"jest-get-type": "^27.0.6"
},
"engines": {
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
"node": "^14.15.0 || ^16.13.0 || >=18.0.0"
},
"lint-staged": {
"*.js": "eslint --fix",
Expand Down

0 comments on commit 9ff8eae

Please sign in to comment.