Skip to content

Commit 86c74e8

Browse files
committed
!chore: Drops Node.js 10 support (end-of-life), now requires Node.js >= 12.
Node.js 10 has reached end-of-life and many upstream dependencies have formally dropped support. - Drops Node.js 10 from our test matrix. - Adds Node.js 16 to test matrix. see: #791,#835,#816,#792
1 parent a61d8cf commit 86c74e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
node: [10, 12, 14]
12+
node: [12, 14, 16]
1313
os: [ubuntu-latest, windows-latest]
1414
env:
1515
OS: ${{ matrix.os }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"repository": "conventional-changelog/standard-version",
2020
"engines": {
21-
"node": ">=10"
21+
"node": ">=12"
2222
},
2323
"keywords": [
2424
"conventional-changelog",

0 commit comments

Comments
 (0)