fix: pin release-please baseline and use a scoped PAT #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.14 | |
| - run: bun install --frozen-lockfile | |
| - run: bun run check | |
| - name: Link the package for the example worker | |
| run: bun link | |
| - name: Install example worker dependencies | |
| working-directory: examples/worker | |
| run: | | |
| bun link @officialunofficial/og | |
| bun install | |
| - name: Typecheck example worker | |
| working-directory: examples/worker | |
| run: bun run typecheck | |
| - name: Bundle example worker (deploy dry-run) | |
| working-directory: examples/worker | |
| run: bun run build |