Skip to content

Commit 41d5993

Browse files
authoredJul 8, 2022
ci: stop testing against NodeJS v10, v12 (#365)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent c75759b commit 41d5993

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
@@ -13,10 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
node_version:
16-
- 10
17-
- 12
1816
- 14
1917
- 16
18+
- 18
2019
steps:
2120
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
2221
- name: "Use Node.js ${{ matrix.node_version }}"

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@
5858
"@pika/plugin-ts-standard-pkg"
5959
],
6060
[
61-
"@pika/plugin-build-node"
61+
"@pika/plugin-build-node",
62+
{
63+
"minNodeVersion": "14"
64+
}
6265
],
6366
[
6467
"@pika/plugin-build-web"
@@ -92,5 +95,8 @@
9295
"extends": [
9396
"github>octokit/.github"
9497
]
98+
},
99+
"engines": {
100+
"node": ">= 14"
95101
}
96102
}

0 commit comments

Comments
 (0)
Please sign in to comment.