From 4343e26080280064a628e6f59a868033a08a80a4 Mon Sep 17 00:00:00 2001 From: Ander Date: Thu, 20 Aug 2026 20:15:52 +0200 Subject: [PATCH] Run the test suite in CI, not just build+lint CI built and linted every PR but never ran the real test suite (20 tests, added earlier this session - this repo had none before). Confirmed vitest correctly runs once-and-exit under CI=true (which GitHub Actions sets automatically), rather than its local default of watch mode. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01DTXXBERPGEnYiYP4Mt3FjF --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64d1787..c823571 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Lint +name: CI on: pull_request: @@ -26,3 +26,5 @@ jobs: run: npm run build - name: Lint run: npm run lint + - name: Test + run: npm test