Skip to content

Merge pull request #17 from homanp/feat/byok-model-selection #7

Merge pull request #17 from homanp/feat/byok-model-selection

Merge pull request #17 from homanp/feat/byok-model-selection #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx eslint --quiet src/
typecheck:
name: Typecheck
runs-on: ubuntu-latest
needs: [lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx tsc --noEmit