Skip to content

docs: remove star promotion section and add .worktrees/ to gitignore #16

docs: remove star promotion section and add .worktrees/ to gitignore

docs: remove star promotion section and add .worktrees/ to gitignore #16

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install
run: bun install --frozen-lockfile --ignore-scripts
- name: Lint & Format
run: bun run lint && bun run format:check
- name: Type check
run: bun run typecheck
- name: Test
run: bun test
- name: Build
run: bun run build