name: test-web # Web SPA: vitest + svelte-check. Runs on push to dev/main only — # the `pull_request` trigger is intentionally omitted because every # branch on this repo is local-only (no fork PRs), so the dev push # fully covers what a PR run would re-execute. Keeping both events # doubled CI cost on every commit. on: push: branches: [dev, main] paths: - 'web/**' - '.gitea/workflows/test-web.yml' # Cancel an earlier in-flight run for the same ref when a newer # commit arrives. With cancel-in-progress, rapid re-pushes don't # pile up zombie runs. concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test: runs-on: go-ci container: image: git.fabledsword.com/bvandeusen/ci-go:1.26 defaults: run: working-directory: web steps: - name: Checkout uses: actions/checkout@v4 - name: Install deps run: npm ci - name: Type-check + svelte-check run: npm run check - name: Vitest run: npm test