From 784adccd976c2ebf6338172788da7fdad787124d Mon Sep 17 00:00:00 2001 From: Michael Ensor Date: Thu, 16 Apr 2026 22:53:22 +0800 Subject: [PATCH] ci: add pnpm test job after build Mirrors the existing job setup pattern (pnpm install --frozen-lockfile, then run command). The test job depends on build, consistent with how typecheck-and-lint blocks build. Agent: claude-sonnet-4-6 Session: action-a-exitstorm-rebuild Plan: ~/.claude/plans/inherited-exploring-lovelace.md --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59c9dfb..20631c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,3 +63,27 @@ jobs: - name: Build all run: pnpm build + + test: + name: Test + runs-on: ubuntu-latest + timeout-minutes: 10 + needs: build + + steps: + - uses: actions/checkout@v4 + + - uses: pnpm/action-setup@v4 + with: + version: 9 + + - uses: actions/setup-node@v4 + with: + node-version: 22 + cache: pnpm + + - name: Install dependencies + run: pnpm install --frozen-lockfile + + - name: Test + run: pnpm test