We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74464e2 commit 52cf451Copy full SHA for 52cf451
.github/workflows/test.yml
@@ -14,10 +14,9 @@ jobs:
14
strategy:
15
matrix:
16
node_version:
17
- - "10"
18
- - "12"
19
- - "14"
20
- - "16"
+ - 14
+ - 16
+ - 18
21
steps:
22
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
23
- name: "Use Node.js ${{ matrix.node_version }}"
package.json
@@ -56,7 +56,10 @@
56
"@pika/plugin-ts-standard-pkg"
57
],
58
[
59
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
60
+ {
61
+ "minNodeVersion": "14"
62
+ }
63
64
65
"@pika/plugin-build-web"
@@ -90,5 +93,8 @@
90
93
"extends": [
91
94
"github>octokit/.github"
92
95
]
96
+ },
97
+ "engines": {
98
+ "node": ">= 14"
99
}
100
0 commit comments