the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

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

Add modal-sandbox tests to CI and set up Bun

+12 -1
+12 -1
.github/workflows/test-sandbox.yml
··· 4 4 push: 5 5 paths: 6 6 - "apps/sandbox/**" 7 + - "apps/modal-sandbox/**" 7 8 - ".github/workflows/test-sandbox.yml" 8 9 9 10 jobs: ··· 13 14 - name: Checkout repository 14 15 uses: actions/checkout@v4 15 16 17 + - name: Set up Bun 18 + run: | 19 + curl -fsSL https://bun.sh/install | bash 20 + 16 21 - name: Set up Deno 17 22 uses: denoland/setup-deno@v2 18 23 19 - - name: Run tests 24 + - name: Run tests (sandbox) 20 25 working-directory: apps/sandbox 21 26 run: deno task test 27 + 28 + - name: Run tests (modal sandbox) 29 + working-directory: apps/modal-sandbox 30 + run: | 31 + bun install 32 + bun run test