chore: added workflows f8701f56
Steve · 2026-02-02 09:29 1 file(s) · +21 −0
.tangled/workflows/lint.yml (added) +21 −0
1 +
# Biome lint and format checks
2 +
3 +
when:
4 +
  - event: ["push", "manual"]
5 +
    branch: ["main"]
6 +
  - event: ["pull_request"]
7 +
    branch: ["main"]
8 +
9 +
engine: "nixery"
10 +
11 +
dependencies:
12 +
  nixpkgs:
13 +
    - bun
14 +
15 +
steps:
16 +
  - name: "Install dependencies"
17 +
    command: "bun install"
18 +
  - name: "Lint check"
19 +
    command: "cd packages/cli && bun x biome lint ."
20 +
  - name: "Format check"
21 +
    command: "cd packages/cli && bun x biome format ."