Skip to content

Update bun.lock to fix CI #3

Update bun.lock to fix CI

Update bun.lock to fix CI #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Format check
run: bun run format:check
- name: Typecheck
run: bun --bun tsc --noEmit
- name: Test
run: bun test