Skip to content

ci: add lint and build checks on PRs #2

ci: add lint and build checks on PRs

ci: add lint and build checks on PRs #2

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
merge_group:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- name: Format check
run: bun run format:check
- name: Build
run: bun run build