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 a1542ab commit bd6ed90Copy full SHA for bd6ed90
.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@v3
package.json
@@ -59,7 +59,10 @@
59
"@pika/plugin-ts-standard-pkg"
60
],
61
[
62
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
63
+ {
64
+ "minNodeVersion": "14"
65
+ }
66
67
68
"@pika/plugin-build-web"
@@ -102,5 +105,8 @@
102
105
"extends": [
103
106
"github>octokit/.github"
104
107
]
108
+ },
109
+ "engines": {
110
+ "node": ">= 14"
111
}
112
0 commit comments