Skip to content

Commit a77f767

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

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed
 

‎.github/workflows/test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
node_version:
17-
- 10
18-
- 12
1917
- 14
2018
- 16
19+
- 18
2120
steps:
2221
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
2322
- name: "Use Node.js ${{ matrix.node_version }}"

‎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.