Skip to content

Commit c17c7f9

Browse files
committed
feat!: drop support for Node v14
1 parent 85f1213 commit c17c7f9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [14.x, 16.x, 18.x, 19.x]
9+
node: [16.x, 18.x, 20.x]
1010
name: Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
"lint:ci": "standard",
1515
"release": "npx standard-version"
1616
},
17+
"engines": {
18+
"node": ">=16.x"
19+
},
1720
"keywords": [],
1821
"repository": {
1922
"type": "git",

0 commit comments

Comments
 (0)