tangled
alpha
login
or
join now
hallaine.com
/
web
0
fork
atom
this repo has no description
hallaine.com
0
fork
atom
overview
issues
pulls
pipelines
feat(ci): biome
hallaine.com
3 weeks ago
382ad549
6f4d1fdf
+7
-13
2 changed files
expand all
collapse all
unified
split
.woodpecker.yml
biome.json
+6
-12
.woodpecker.yml
···
2
2
event: push
3
3
4
4
steps:
5
5
-
production:
6
6
-
image: node
7
7
-
when:
8
8
-
branch: main
9
9
-
environment:
10
10
-
VERCEL_TOKEN:
11
11
-
from_secret: vercel_token
5
5
+
biome:
6
6
+
image: ghcr.io/biomejs/biome:2.4.4
12
7
commands:
13
13
-
- npx vercel --yes --token=$VERCEL_TOKEN --prod
8
8
+
- biome check
14
9
15
15
-
preview:
10
10
+
deploy:
16
11
image: node
17
12
when:
18
18
-
branch:
19
19
-
exclude: [main]
13
13
+
branch: main
20
14
environment:
21
15
VERCEL_TOKEN:
22
16
from_secret: vercel_token
23
17
commands:
24
24
-
- npx vercel --yes --token=$VERCEL_TOKEN
18
18
+
- npx vercel --yes --token=$VERCEL_TOKEN $([ "$CI_COMMIT_BRANCH" = "main" ] && echo "--prod")
+1
-1
biome.json
···
1
1
{
2
2
-
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
2
2
+
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
3
3
"vcs": {
4
4
"enabled": true,
5
5
"clientKind": "git",