Skip to content

feat(agent): live browser agent track in QaReplay #312

feat(agent): live browser agent track in QaReplay

feat(agent): live browser agent track in QaReplay #312

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint --workspace=apps/desktop
- name: Type Check
working-directory: apps/desktop
run: npx tsc --noEmit
- name: Unit Tests
working-directory: apps/desktop
run: npm run test:unit