We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03f930 commit a77f767Copy full SHA for a77f767
.github/workflows/test.yml
@@ -14,10 +14,9 @@ jobs:
14
strategy:
15
matrix:
16
node_version:
17
- - 10
18
- - 12
19
- 14
20
- 16
+ - 18
21
steps:
22
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
23
- name: "Use Node.js ${{ matrix.node_version }}"
package.json
@@ -70,7 +70,10 @@
70
"@pika/plugin-ts-standard-pkg"
71
],
72
[
73
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
74
+ {
75
+ "minNodeVersion": "14"
76
+ }
77
78
79
"@pika/plugin-build-web"
@@ -104,5 +107,8 @@
104
107
"extends": [
105
108
"github>octokit/.github"
106
109
]
110
+ },
111
+ "engines": {
112
+ "node": ">= 14"
113
}
114
0 commit comments