We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2db46c commit 0a86afeCopy full SHA for 0a86afe
.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"
@@ -82,5 +85,8 @@
82
85
"extends": [
83
86
"github>octokit/.github"
84
87
]
88
+ },
89
+ "engines": {
90
+ "node": ">= 14"
91
}
92
0 commit comments