this repo has no description hallaine.com

feat(ci): move to tangled

test

hallaine.com b57d897f 2b85a3f4

verified
Waiting for spindle ...
+18 -18
+18
.tangled/workflows/default.yml
··· 1 + when: 2 + - event: ["push", "pull_request"] 3 + branch: main 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - biome 10 + - nodejs 11 + 12 + steps: 13 + - name: "biome" 14 + command: "biome check" 15 + 16 + - name: "deploy" 17 + command: 18 + - npx vercel --yes --token=$VERCEL_TOKEN $([ "$TANGLED_REF" = "refs/heads/main" ] && echo "--prod")
-18
.woodpecker.yml
··· 1 - when: 2 - event: push 3 - 4 - steps: 5 - biome: 6 - image: ghcr.io/biomejs/biome:2.4.6 7 - commands: 8 - - biome check 9 - 10 - deploy: 11 - image: node 12 - when: 13 - branch: main 14 - environment: 15 - VERCEL_TOKEN: 16 - from_secret: vercel_token 17 - commands: 18 - - npx vercel --yes --token=$VERCEL_TOKEN $([ "$CI_COMMIT_BRANCH" = "main" ] && echo "--prod")