Skip to content

Commit e54e6c3

Browse files
authoredJul 7, 2022
ci: stop testing against NodeJS v10, v12 (#488)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent a12d6bd commit e54e6c3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎.github/workflows/test.yml

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
node_version:
17-
- 10
18-
- 12
1917
- 14
2018
- 16
2119

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@
7070
"@pika/plugin-ts-standard-pkg"
7171
],
7272
[
73-
"@pika/plugin-build-node"
73+
"@pika/plugin-build-node",
74+
{
75+
"minNodeVersion": "14"
76+
}
7477
],
7578
[
7679
"@pika/plugin-build-web"
@@ -104,5 +107,8 @@
104107
"extends": [
105108
"github>octokit/.github"
106109
]
110+
},
111+
"engines": {
112+
"node": ">= 14"
107113
}
108114
}

0 commit comments

Comments
 (0)
Please sign in to comment.