Skip to content

fix: remove test step from CI (no tests exist yet) #5

fix: remove test step from CI (no tests exist yet)

fix: remove test step from CI (no tests exist yet) #5

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Generate proto types
run: bun run proto:generate
- name: Type check
run: bun run type:check
- name: Lint & Format
run: bun run lint