Skip to content

Commit 6ee87e6

Browse files
authoredJul 7, 2022
ci: stop testing against NodeJS v10, v12 (#482)
BREAKING CHANGE: Drop support for NodeJS v10, v12
1 parent 5e0e80a commit 6ee87e6

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@master
2221
- name: Test with Node.js ${{ matrix.node_version }}

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@
6262
"@pika/plugin-ts-standard-pkg"
6363
],
6464
[
65-
"@pika/plugin-build-node"
65+
"@pika/plugin-build-node",
66+
{
67+
"minNodeVersion": "14"
68+
}
6669
],
6770
[
6871
"@pika/plugin-build-web"
@@ -96,5 +99,8 @@
9699
"extends": [
97100
"github>octokit/.github"
98101
]
102+
},
103+
"engines": {
104+
"node": ">= 14"
99105
}
100106
}

0 commit comments

Comments
 (0)
Please sign in to comment.