We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c75759b commit 41d5993Copy full SHA for 41d5993
.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@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
22
- name: "Use Node.js ${{ matrix.node_version }}"
package.json
@@ -58,7 +58,10 @@
58
"@pika/plugin-ts-standard-pkg"
59
],
60
[
61
- "@pika/plugin-build-node"
+ "@pika/plugin-build-node",
62
+ {
63
+ "minNodeVersion": "14"
64
+ }
65
66
67
"@pika/plugin-build-web"
@@ -92,5 +95,8 @@
92
95
"extends": [
93
96
"github>octokit/.github"
94
97
]
98
+ },
99
+ "engines": {
100
+ "node": ">= 14"
101
}
102
0 commit comments