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 e537c9e commit d9b6378Copy full SHA for d9b6378
.github/workflows/test.yml
@@ -11,7 +11,10 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- node_version: ["12", "14", "16"]
+ node_version:
15
+ - 14
16
+ - 16
17
+ - 18
18
19
steps:
20
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
package.json
@@ -54,7 +54,10 @@
54
"@pika/plugin-ts-standard-pkg"
55
],
56
[
57
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
58
+ {
59
+ "minNodeVersion": "14"
60
+ }
61
62
63
"@pika/plugin-build-web"
@@ -115,5 +118,8 @@
115
118
"extends": [
116
119
"github>octokit/.github"
117
120
]
121
+ },
122
+ "engines": {
123
+ "node": ">= 14"
124
}
125
0 commit comments