chore: updated workflows f0f47152
Steve · 2026-02-02 09:31 1 file(s) · +3 −2
.tangled/workflows/lint.yml +3 −2
11 11
dependencies:
12 12
  nixpkgs:
13 13
    - bun
14 +
    - biome
14 15
15 16
steps:
16 17
  - name: "Install dependencies"
17 18
    command: "bun install"
18 19
  - name: "Lint check"
19 -
    command: "cd packages/cli && bun x biome lint ."
20 +
    command: "biome lint ./packages/cli"
20 21
  - name: "Format check"
21 -
    command: "cd packages/cli && bun x biome format ."
22 +
    command: "biome format ./packages/cli"