Skip to content

Migrate audio engine v2 #406

Migrate audio engine v2

Migrate audio engine v2 #406

Workflow file for this run

name: Monorepo Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: monorepo-checks-${{ github.head_ref || github.ref_name || github.run_id }}
cancel-in-progress: true
jobs:
verify:
name: format-lint-build
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Build production bundle
run: pnpm build:prod