Skip to content

fix: pin release-please baseline and use a scoped PAT #5

fix: pin release-please baseline and use a scoped PAT

fix: pin release-please baseline and use a scoped PAT #5

Workflow file for this run

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