Skip to content

fix: v1/ai/transcribe response schema #124

fix: v1/ai/transcribe response schema

fix: v1/ai/transcribe response schema #124

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [main]
jobs:
test:
name: Format & Build Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn biome check .
- name: Build package
run: yarn build