© 2026 Hedgehog Software, LLC
error: Cannot find package "cloudflare:test" from "
name: Deploy Worker on: push: branches: - main jobs: deploy: runs-on: ubuntu-latest timeout-minutes: 60 steps: - uses: actions/checkout@v4 - name: Setup Bun uses: oven-sh/setup-bun@v1 with: bun-version: '1.1.0' - name: Install dependencies run: bun install - name: Lint run: bun run lint - name: Run tests run: bun test - name: Build & Deploy Worker uses: cloudflare/[email protected] with: packageManager: bun environment: production apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}