Skip to content

docs: reposition sandbank as workspace agent harness #85

docs: reposition sandbank as workspace agent harness

docs: reposition sandbank as workspace agent harness #85

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm --filter @sandbank.dev/core build
- run: pnpm --filter @sandbank.dev/workspace build
- run: pnpm --filter @sandbank.dev/cloud build
- run: pnpm --filter @sandbank.dev/cloudflare build
- run: pnpm --filter @sandbank.dev/db9 build
- run: pnpm typecheck
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test