A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing

chore: added workflows

+21
+21
.tangled/workflows/lint.yml
··· 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 ."