fix(game): improve daily reliability and validation

This commit is contained in:
2026-07-22 22:48:03 -04:00
parent 90ee33fe65
commit 50a36280f6
13 changed files with 730 additions and 89 deletions
+22
View File
@@ -0,0 +1,22 @@
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- run: npm run check
- run: npm run lint
- run: npm test
- run: npm run build