Skip to content

Commit 7851a93

Browse files
authored
ci: stop testing against NodeJS v10, v12 (#355)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent 2807fe0 commit 7851a93

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
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@v3
2221
- name: Use Node.js ${{ matrix.node_version }}

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@
6767
"@pika/plugin-ts-standard-pkg"
6868
],
6969
[
70-
"@pika/plugin-build-node"
70+
"@pika/plugin-build-node",
71+
{
72+
"minNodeVersion": "14"
73+
}
7174
],
7275
[
7376
"@pika/plugin-build-web"
@@ -101,5 +104,8 @@
101104
"extends": [
102105
"github>octokit/.github"
103106
]
107+
},
108+
"engines": {
109+
"node": ">= 14"
104110
}
105111
}

0 commit comments

Comments
 (0)