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.

Install Bun via script in CI workflows

+8 -2
+4 -1
.github/workflows/deploy-front.yml
··· 15 15 uses: actions/checkout@v4 16 16 17 17 - name: Set up Bun 18 - uses: oven-sh/setup-bun@v2 18 + run: | 19 + curl -fsSL https://bun.sh/install | bash 20 + echo "BUN_INSTALL=/home/runner/.bun" >> $GITHUB_ENV 21 + echo "PATH=/home/runner/.bun/bin:$PATH" >> $GITHUB_ENV 19 22 20 23 - name: Install dependencies 21 24 working-directory: apps/web
+4 -1
.github/workflows/deploy.yml
··· 41 41 uses: docker/setup-buildx-action@v3 42 42 43 43 - name: Set up Bun 44 - uses: oven-sh/setup-bun@v2 44 + run: | 45 + curl -fsSL https://bun.sh/install | bash 46 + echo "BUN_INSTALL=/home/runner/.bun" >> $GITHUB_ENV 47 + echo "PATH=/home/runner/.bun/bin:$PATH" >> $GITHUB_ENV 45 48 46 49 - name: Install dependencies 47 50 working-directory: apps/cf-sandbox