diff options
| author | Li Zhineng <[email protected]> | 2025-07-01 17:19:59 +0800 |
|---|---|---|
| committer | Li Zhineng <[email protected]> | 2025-07-01 17:19:59 +0800 |
| commit | 2a3c494297bc93a53aad8a6ce8faa406708213a4 (patch) | |
| tree | f6a0f27e302b37224156c48d1484004015659b60 /.github | |
| parent | 800abf2f8e901daaf63f9c0a8c583cbb669aafd1 (diff) | |
| download | server-2a3c494297bc93a53aad8a6ce8faa406708213a4.tar.gz server-2a3c494297bc93a53aad8a6ce8faa406708213a4.zip | |
deploy CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f001bb6 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,11 @@ +name: Test +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 24 + - run: node server.test.mjs |
