返回提交历史
Modified
.github/workflows/build.yml
+0
-5
XFEstudio/XFESpaceNinjaServer
ci: remove node.js version matrix (#1519)
We only check if the TypeScript successfully compiles & lints, which isn't really dependent on Node.js version. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1519 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
005350bd
代码差异
1 个文件
+0
-5
@@ -5,16 +5,11 @@ on:
5
5
jobs:
6
6
build:
7
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
version: [18, 20, 22]
11
8
steps:
12
9
- name: Checkout
13
10
uses: actions/checkout@v4.1.2
14
11
- name: Setup Node.js environment
15
12
uses: actions/setup-node@v4.0.2
16
with:
17
node-version: ${{ matrix.version }}
18
13
- run: npm ci
19
14
- run: cp config.json.example config.json
20
15
- run: npm run verify