Skip to content

Commit 2009a54

Browse files
authored
feat!: drop support for Node 12, 14, 17, 19 (#373)
BREAKING CHANGE These are end-of-life: https://github.com/nodejs/release#release-schedule
1 parent 48692db commit 2009a54

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ ubuntu, windows ]
19-
node-version: [12.x, 14.x, 16.x, 18.x]
19+
node-version: [16.x, 18.x, 20.x]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -42,6 +42,6 @@ jobs:
4242
- uses: actions/checkout@v3
4343
- uses: actions/setup-node@v3
4444
with:
45-
node-version: "18.x"
45+
node-version: "20.x"
4646
- run: npm ci
4747
- run: npm run lint

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
"homepage": "https://github.com/platinumazure/eslint-plugin-qunit",
8585
"engines": {
86-
"node": "12.x || 14.x || >=16.0.0"
86+
"node": "^16.0.0 || ^18.0.0 || >=20.0.0"
8787
},
8888
"release-it": {
8989
"github": {

0 commit comments

Comments
 (0)