We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b16ede5 commit 2247826Copy full SHA for 2247826
.github/workflows/ci.yml
@@ -33,6 +33,11 @@ jobs:
33
- name: TypeScript type checking
34
run: bun run typecheck
35
36
+ # biome.json has "root": false to inherit from parent in worktree
37
+ # In CI there's no parent, so we set it to true
38
+ - name: Fix biome.json for standalone CI
39
+ run: sed -i 's/"root": false/"root": true/' biome.json
40
+
41
- name: Lint (Biome)
42
run: bun run lint
43
0 commit comments