From 9b9ed61bc4c2b3c063366a9bd2e351de5dfe43e0 Mon Sep 17 00:00:00 2001 From: spawn-qa-bot Date: Sun, 29 Mar 2026 20:23:35 +0000 Subject: [PATCH] fix(ci): remove stale paths from biome check step in lint.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit biome.json restricts linting to packages/**/*.ts via its includes filter, so passing .claude/scripts/ and .claude/skills/setup-spa/ to the biome check command was a no-op — biome reported 0 files processed for those paths and silently skipped them. Remove the stale paths so the CI step accurately reflects what biome actually checks. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c8c455661..a80e7a646 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -56,7 +56,7 @@ jobs: run: bun install - name: Run Biome check (all packages) - run: bunx @biomejs/biome check packages/cli/src/ packages/shared/src/ .claude/scripts/ .claude/skills/setup-spa/ + run: bunx @biomejs/biome check packages/cli/src/ packages/shared/src/ macos-compat: name: macOS Compatibility