tangled
alpha
login
or
join now
stevedylan.dev
/
sequoia
A CLI for publishing standard.site documents to ATProto
sequoia.pub
standard
site
lexicon
cli
publishing
30
fork
atom
overview
issues
5
pulls
1
pipelines
chore: added workflows
stevedylan.dev
1 week ago
f8701f56
0eb53b53
0/1
lint.yml
failed
9s
+21
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
lint.yml
+21
.tangled/workflows/lint.yml
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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 ."