Skip to content

Commit 0a86afe

Browse files
authoredJul 8, 2022
ci: stop testing against NodeJS v10, v12 (#236)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent f2db46c commit 0a86afe

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"
@@ -82,5 +85,8 @@
8285
"extends": [
8386
"github>octokit/.github"
8487
]
88+
},
89+
"engines": {
90+
"node": ">= 14"
8591
}
8692
}

0 commit comments

Comments
 (0)
Please sign in to comment.