Skip to content

Commit aa087c9

Browse files
committed
feat: drop node versions less than 16
BREAKING CHANGE: node versions less than 16.0.0 are no longer supported
1 parent 92a4b39 commit aa087c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [12.x, 14.x]
16+
node-version: [16.x, 18.x]
1717
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1818

1919
steps:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"release": "standard-version"
1111
},
1212
"engines": {
13-
"node": ">= 8.0.0"
13+
"node": ">= 16.0.0"
1414
},
1515
"repository": {
1616
"type": "git",

0 commit comments

Comments
 (0)