Skip to content

Derive catalog song URLs from source IDs; Add OSS repo templates; Add… #2

Derive catalog song URLs from source IDs; Add OSS repo templates; Add…

Derive catalog song URLs from source IDs; Add OSS repo templates; Add… #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "codex/**"
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: npm
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: npm ci
- name: Apply local migrations
run: npm run db:migrate
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Build
run: npm run build