XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFESpaceNinjaServer

improve: use all supported nodejs versions in workflow (#459)

470653a0
Sainan <sainan@calamity.gg>
提交于

代码差异

1 个文件 +4 -1
Modified .github/workflows/build.yml +4 -1
@@ -5,13 +5,16 @@ on:
5 5 jobs:
6 6 build:
7 7 runs-on: ubuntu-latest
8 strategy:
9 matrix:
10 version: [18, 20, 22]
8 11 steps:
9 12 - name: Checkout
10 13 uses: actions/checkout@v4.1.2
11 14 - name: Setup Node.js environment
12 15 uses: actions/setup-node@v4.0.2
13 16 with:
14 node-version: "20.x"
17 node-version: ${{ matrix.version }}
15 18 - run: npm ci
16 19 - run: cp config.json.example config.json
17 20 - run: echo '{"version":"","buildLabel":"","matchmakingBuildId":""}' > static/data/buildConfig.json