Skip to content

docs: add backend STT handoff document #237

docs: add backend STT handoff document

docs: add backend STT handoff document #237

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies (prefer ci, fallback to install)
run: npm ci || npm install --no-audit --no-fund
- name: Setup environment variables
run: cp .env.example .env
- name: Typecheck
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Unit tests
run: npm run test
- name: E2E smoke
if: ${{ github.event_name == 'pull_request' }}
run: npx playwright install --with-deps && npm run e2e
- name: Upload coverage to artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage