From 94be9c84c975ccab90730a29877bb33b69d93bd7 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 7 Feb 2026 16:07:45 +0000 Subject: [PATCH] fix(ci): pass coverage flags through turbo correctly bun run strips the first `--`, so turbo was receiving `--coverage` as its own flag. Add a second `--` so turbo gets `-- --coverage ...` and forwards the flags to vitest. https://claude.ai/code/session_01CqaEcLUs4GaUyi1PPQf5H3 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 64506ce..a09d5af 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -63,7 +63,7 @@ jobs: run: bun install - name: Run tests with coverage - run: bun run test -- --coverage --coverage.reporter=lcov + run: bun run test -- -- --coverage --coverage.reporter=lcov - name: Upload coverage to Codecov uses: codecov/codecov-action@v5