From f8701f56c6d2ecdd3735763298e65188b945dbd0 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 2 Feb 2026 09:29:50 -0500 Subject: [PATCH] chore: added workflows --- .tangled/workflows/lint.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .tangled/workflows/lint.yml diff --git a/.tangled/workflows/lint.yml b/.tangled/workflows/lint.yml new file mode 100644 index 0000000..0e1a74e --- /dev/null +++ b/.tangled/workflows/lint.yml @@ -0,0 +1,21 @@ +# Biome lint and format checks + +when: + - event: ["push", "manual"] + branch: ["main"] + - event: ["pull_request"] + branch: ["main"] + +engine: "nixery" + +dependencies: + nixpkgs: + - bun + +steps: + - name: "Install dependencies" + command: "bun install" + - name: "Lint check" + command: "cd packages/cli && bun x biome lint ." + - name: "Format check" + command: "cd packages/cli && bun x biome format ." -- 2.51.2