Skip to content

⬆️ Bump google.golang.org/protobuf from 1.36.1 to 1.36.3 #59

⬆️ Bump google.golang.org/protobuf from 1.36.1 to 1.36.3

⬆️ Bump google.golang.org/protobuf from 1.36.1 to 1.36.3 #59

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