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): move to tangled
hallaine.com
2 weeks ago
6a7b1ba4
2b85a3f4
verified
This commit was signed with the committer's
known signature
.
hallaine.com
SSH Key Fingerprint:
SHA256:zBOlxF6UUIvkYfz8OAMgY0WVQV0KrF4Mp8P2EXlIzC8=
0/0
Waiting for spindle ...
+18
-18
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
default.yml
.woodpecker.yml
+18
.tangled/workflows/default.yml
···
1
1
+
when:
2
2
+
- event: ["push", "pull_request"]
3
3
+
branch: main
4
4
+
5
5
+
engine: nixery
6
6
+
7
7
+
dependencies:
8
8
+
nixpkgs:
9
9
+
- biome
10
10
+
- nodejs
11
11
+
12
12
+
steps:
13
13
+
- name: "biome"
14
14
+
command: "biome check"
15
15
+
16
16
+
- name: "deploy"
17
17
+
command:
18
18
+
- npx vercel --yes --token=$VERCEL_TOKEN $([ "$TANGLED_REF" = "refs/heads/main" ] && echo "--prod")
-18
.woodpecker.yml
···
1
1
-
when:
2
2
-
event: push
3
3
-
4
4
-
steps:
5
5
-
biome:
6
6
-
image: ghcr.io/biomejs/biome:2.4.6
7
7
-
commands:
8
8
-
- biome check
9
9
-
10
10
-
deploy:
11
11
-
image: node
12
12
-
when:
13
13
-
branch: main
14
14
-
environment:
15
15
-
VERCEL_TOKEN:
16
16
-
from_secret: vercel_token
17
17
-
commands:
18
18
-
- npx vercel --yes --token=$VERCEL_TOKEN $([ "$CI_COMMIT_BRANCH" = "main" ] && echo "--prod")