I run format which should fix the ci errors, but I also updated the workflow to use the biome that bun installs
+3
-2
.tangled/workflows/lint.yml
+3
-2
.tangled/workflows/lint.yml
···
11
11
dependencies:
12
12
nixpkgs:
13
13
- bun
14
+
- biome
14
15
15
16
steps:
16
17
- name: "Install dependencies"
17
18
command: "bun install"
18
19
- name: "Lint check"
20
+
command: "cd packages/cli && biome lint ."
19
-
command: "bun --cwd packages/cli biome lint"
20
21
- name: "Format check"
22
+
command: "cd packages/cli && biome format ."
21
-
command: "bun --cwd packages/cli biome format"
bun.lock
bun.lock
This file has not been changed.
packages/cli/src/components/sequoia-subscribe.js
packages/cli/src/components/sequoia-subscribe.js
This file has not been changed.
packages/cli/src/lib/config.ts
packages/cli/src/lib/config.ts
This file has not been changed.
#42