We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e0e80a commit 6ee87e6Copy full SHA for 6ee87e6
.github/workflows/test.yml
@@ -13,10 +13,9 @@ jobs:
13
strategy:
14
matrix:
15
node_version:
16
- - 10
17
- - 12
18
- 14
19
- 16
+ - 18
20
steps:
21
- uses: actions/checkout@master
22
- name: Test with Node.js ${{ matrix.node_version }}
package.json
@@ -62,7 +62,10 @@
62
"@pika/plugin-ts-standard-pkg"
63
],
64
[
65
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
66
+ {
67
+ "minNodeVersion": "14"
68
+ }
69
70
71
"@pika/plugin-build-web"
@@ -96,5 +99,8 @@
96
99
"extends": [
97
100
"github>octokit/.github"
98
101
]
102
+ },
103
+ "engines": {
104
+ "node": ">= 14"
105
}
106
0 commit comments