Skip to content

meta: clarify commands run at repo root #118

meta: clarify commands run at repo root

meta: clarify commands run at repo root #118

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
jobs:
check:
name: Lint, Format & Type Check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run --filter=@apps/server build
- run: bun run --filter=@apps/desktop build