Skip to content

fix(web): Ollama model validation, credential edit and delete, compos… #3204

fix(web): Ollama model validation, credential edit and delete, compos…

fix(web): Ollama model validation, credential edit and delete, compos… #3204

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
# Warms the bun install cache once so the parallel jobs below mostly
# restore rather than reinstall from the network.
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-workbench
typecheck:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-workbench
- run: bun run typecheck
lint:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-workbench
- run: bun run lint
- run: bun run fmt:check
# A single fast pass over every workspace's tests. DB-gated suites
# skip themselves when DATABASE_URL is unset —
# see test/db-gate.ts — so this job needs no Postgres service.
unit:
needs: setup
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-workbench
- run: bun run test