Skip to content

🔖 v1.10.0-beta.5

🔖 v1.10.0-beta.5 #1

Workflow file for this run

name: Build and Test
on:
pull_request:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Run tests
run: bun test