This commit is contained in:
Kaihua
2026-07-23 09:31:05 +08:00
commit 91be9ba320
30 changed files with 4939 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: CI
on:
pull_request:
push:
branches-ignore: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm test
- run: npm run typecheck
- run: npm run build