A Astro blog hosted on Vercel

workflow npm test

Changed files
+13 -2
.tangled
workflows
+13 -2
.tangled/workflows/deploy.yaml
··· 7 7 dependencies: 8 8 nixpkgs: 9 9 - nodejs 10 + - npm 11 + - nvm 10 12 11 13 steps: 12 - - name: build site 14 + - name: Set up Node.js 15 + command: | 16 + nvm install 22 17 + nvm use 22 18 + 19 + - name: Install dependencies 20 + command: | 21 + npm ci 22 + 23 + - name: Build project 13 24 command: | 14 - nix develop --command bash -c 'npm ci & npm run build' 25 + npm run build 15 26 16 27 - name: Deploy to Vercel 17 28 env: