fix: separate Biome format and lint checks to enable auto-format

Biome's 'check' command runs both formatting and linting, causing
overlapping failures that prevented auto-format from triggering.
Split into separate commands and removed web-lint check since Biome
linting crashes on Svelte 5 syntax. Renamed check steps for clarity.
This commit is contained in:
2026-01-31 01:03:58 -06:00
parent 5dd35ed215
commit ac8dbb2eef
3 changed files with 12 additions and 17 deletions
-4
View File
@@ -62,10 +62,6 @@ jobs:
bun run format:check || echo "::warning::Frontend formatting issues found (not failing on push)"
fi
- name: Lint
working-directory: web
run: bun run lint
- name: Type check
working-directory: web
run: bun run typecheck