tangled
alpha
login
or
join now
claycow.com
/
claycow
0
fork
atom
A Astro blog hosted on Vercel
0
fork
atom
overview
issues
pulls
pipelines
workflow npm test
Clayton Cook
6 months ago
a272f5f3
3a916549
0/1
deploy.yaml
failed
6mo ago
+13
-2
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
deploy.yaml
+13
-2
.tangled/workflows/deploy.yaml
reviewed
···
7
7
dependencies:
8
8
nixpkgs:
9
9
- nodejs
10
10
+
- npm
11
11
+
- nvm
10
12
11
13
steps:
12
12
-
- name: build site
14
14
+
- name: Set up Node.js
15
15
+
command: |
16
16
+
nvm install 22
17
17
+
nvm use 22
18
18
+
19
19
+
- name: Install dependencies
20
20
+
command: |
21
21
+
npm ci
22
22
+
23
23
+
- name: Build project
13
24
command: |
14
14
-
nix develop --command bash -c 'npm ci & npm run build'
25
25
+
npm run build
15
26
16
27
- name: Deploy to Vercel
17
28
env: