Skip to content

feat(init): add .gitwrapper to .gitignore by default #1

feat(init): add .gitwrapper to .gitignore by default

feat(init): add .gitwrapper to .gitignore by default #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install --frozen-lockfile
- run: bun run lint # biome lint + format check
- run: bun run typecheck
- run: bun run build # compile the standalone binary
- run: bun test # integration suite runs against the compiled binary