this repo has no description
at main 22 lines 416 B view raw
1# Biome lint and format checks 2 3when: 4 - event: ["push", "manual"] 5 branch: ["main"] 6 - event: ["pull_request"] 7 branch: ["main"] 8 9engine: "nixery" 10 11dependencies: 12 nixpkgs: 13 - bun 14 - biome 15 16steps: 17 - name: "Install dependencies" 18 command: "bun install" 19 - name: "Lint check" 20 command: "cd packages/cli && biome lint ." 21 - name: "Format check" 22 command: "cd packages/cli && biome format ."