ci: add Gitea Actions CI workflow
CI / test (push) Has been cancelled

Runs server tests (node:test), client tests (vitest), and build verification on every push and PR.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 01:53:58 +00:00
parent 9394d583b7
commit 20841ca517
+16
View File
@@ -0,0 +1,16 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci
- run: npm run test:server
- run: npm run test:client
- run: npx vite build