Skip to content

⬆️ Bump github.com/stephenafamo/bob from 0.29.0 to 0.30.0 (#33) #86

⬆️ Bump github.com/stephenafamo/bob from 0.29.0 to 0.30.0 (#33)

⬆️ Bump github.com/stephenafamo/bob from 0.29.0 to 0.30.0 (#33) #86

Workflow file for this run

name: Client CI
on:
push:
branches:
- main
pull_request:
defaults:
run:
working-directory: client
jobs:
typecheck:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun i
- run: bun run type-check
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun i
- run: bun run lint:ci
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun i
- run: bun run format:ci