diff --git a/.tangled/workflows/lint.yml b/.tangled/workflows/lint.yml index 0e1a74e..b677484 100644 --- a/.tangled/workflows/lint.yml +++ b/.tangled/workflows/lint.yml @@ -11,11 +11,12 @@ engine: "nixery" dependencies: nixpkgs: - bun + - biome steps: - name: "Install dependencies" command: "bun install" - name: "Lint check" - command: "cd packages/cli && bun x biome lint ." + command: "biome lint ./packages/cli" - name: "Format check" - command: "cd packages/cli && bun x biome format ." + command: "biome format ./packages/cli"