This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / .tangled / workflows / deploy-bobbin-dev.yml
612 B 35 lines
1when: 2 - event: push 3 branch: sv-fe 4 paths: 5 - bobbin/** 6 - lexicons/** 7 - Cargo.toml 8 - Cargo.lock 9 - rust-toolchain.toml 10 11engine: microvm 12image: nixos 13 14virtualisation: 15 docker: true 16 17dependencies: 18 - nodejs 19 - pnpm 20 21steps: 22 - name: install bobbin worker dependencies 23 command: | 24 cd bobbin/worker 25 pnpm install --frozen-lockfile 26 27 - name: typecheck bobbin worker 28 command: | 29 cd bobbin/worker 30 pnpm run typecheck 31 32 - name: deploy bobbin dev worker 33 command: | 34 cd bobbin/worker 35 pnpm exec wrangler deploy --config wrangler.dev.jsonc