This repository has no description
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 - .tangled/workflows/deploy-bobbin-dev.yml
11
12engine: microvm
13image: nixos
14
15virtualisation:
16 docker: true
17
18dependencies:
19 - nodejs
20 - pnpm
21
22steps:
23 - name: install bobbin worker dependencies
24 command: |
25 cd bobbin/worker
26 pnpm install --frozen-lockfile
27
28 - name: typecheck bobbin worker
29 command: |
30 cd bobbin/worker
31 pnpm run typecheck
32
33 - name: deploy bobbin dev worker
34 command: |
35 cd bobbin/worker
36 CLOUDFLARE_API_TOKEN=$CLOUDFLARE_WORKER_DEPLOY_TOKEN pnpm exec wrangler deploy --config wrangler.dev.jsonc