From 0f66fe51b9b17c344456be4f235b2d86da6c9857 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Wed, 5 Aug 2026 08:31:33 -0400 Subject: [PATCH] Add CI: frontend typecheck + build on every PR and main push MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The retired backfill workflow (#141) was the repo's only Actions workflow, and it never gated PRs — fork PRs here have shown only the broken Vercel authorization check. This runs tsc --noEmit and next build on the frontend for every PR. Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..6d15d19a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: CI + +on: + pull_request: + push: + branches: [main] + +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true + +jobs: + frontend: + name: typecheck · build + runs-on: ubuntu-latest + defaults: + run: + working-directory: frontend + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - run: bun install --frozen-lockfile + - run: bun run lint + - run: bun run build