ci: exclude jetbrains from root typecheck (#10397)

Fixes #10396

Generated OpenAPI client churn (#10395) breaks the JetBrains gradle
typecheck. Exclude @kilocode/kilo-jetbrains from the root `bun typecheck`
filter so contributors and the typecheck CI workflow don't need Java/Gradle.
The jetbrains test:ci pipeline still runs the gradle typecheck via Turbo's
task graph, so the plugin remains covered in its own CI job.
This commit is contained in:
Imanol Maiztegui
2026-05-19 18:43:09 +02:00
committed by GitHub
parent 9b3e1818c4
commit 86342e3734
+1 -1
View File
@@ -10,7 +10,7 @@
"dev-setup": "bun run --cwd packages/opencode --conditions=browser src/index.ts dev-setup",
"dev:storybook": "bun --cwd packages/storybook storybook",
"lint": "oxlint",
"typecheck": "bun turbo typecheck",
"typecheck": "bun turbo typecheck --filter=!@kilocode/kilo-jetbrains",
"postinstall": "bun run --cwd packages/opencode fix-node-pty && bun run script/setup-git.ts",
"prepare": "husky",
"random": "echo 'Random script'",