Skip to content

Commit c3975b4

Browse files
committed
fix!: drop support for node 10
The minimum supported node versions is now 12.
1 parent fc435bb commit c3975b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
node: [10, 12, 14, 15]
31+
node: [12, 14, 16]
3232
steps:
3333
- name: Checkout
3434
uses: actions/[email protected]
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
node: [10, 12, 14, 15]
50+
node: [12, 14, 16]
5151
steps:
5252
- name: Checkout
5353
uses: actions/[email protected]

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"homepage": "https://github.com/vidavidorra/commitlint-plugin-function-rules#readme",
4747
"engines": {
48-
"node": ">=10.22.1"
48+
"node": ">=12"
4949
},
5050
"peerDependencies": {
5151
"@commitlint/lint": ">=9.1.2 || 10.x || 11.x || 12.x || 13.x"

0 commit comments

Comments
 (0)