返回提交历史
Modified
.github/workflows/build.yml
+1
-1
Modified
package.json
+3
-0
XFEstudio/XFESpaceNinjaServer
chore: define node version constraints (#2703)
`>=20.18.1` is required for `npm i && npm run build && npm run start` to succeed. `npm run raw` would require `>=22.7.0`. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2703 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
c9cc1fa0
代码差异
2 个文件
+4
-1
@@ -12,7 +12,7 @@ jobs:
12
12
- name: Setup Node.js environment
13
13
uses: actions/setup-node@v4.0.2
14
14
with:
15
node-version: ">=20.6.0"
15
node-version: ">=20.18.1"
16
16
- run: npm ci
17
17
- run: cp config-vanilla.json config.json
18
18
- run: npm run verify
@@ -57,5 +57,8 @@
57
57
"eslint-plugin-prettier": "^5.2.5",
58
58
"prettier": "^3.5.3",
59
59
"tree-kill": "^1.2.2"
60
},
61
"engines": {
62
"node": ">=20.18.1"
60
63
}
61
64
}