chore: faster web linting (#28303)

This commit is contained in:
Jason Rasmussen
2026-05-08 16:55:14 -04:00
committed by GitHub
parent 25a6a38b30
commit 8a024e2b50
3 changed files with 37 additions and 45 deletions
+7 -1
View File
@@ -42,11 +42,17 @@ run = "pnpm run check:svelte"
[tasks.check]
run = { tasks = [":check-typescript", ":check-svelte"] }
[tasks.checklist]
[tasks.ci-unit]
depends = ["//:sdk:install", "//:sdk:build"]
run = [
{ task = ":install" },
{ task = ":format" },
{ task = ":check" },
{ task = ":test --run" },
]
[tasks.checklist]
run = [
{ task = ":ci-unit" },
{ task = ":lint" },
]