Skip to content

ci: add GitHub workflows #2

ci: add GitHub workflows

ci: add GitHub workflows #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run --if-present lint
- name: Typecheck
run: bun run --if-present typecheck
- name: Test
run: bun run --if-present test
- name: Build
run: bun run --if-present build