Skip to content

Merge pull request #98 from Jamesllllllllll/feature/homepage-player-r… #178

Merge pull request #98 from Jamesllllllllll/feature/homepage-player-r…

Merge pull request #98 from Jamesllllllllll/feature/homepage-player-r… #178

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
- name: Install dependencies
run: npm ci
- name: Apply local migrations
run: npm run db:migrate
- name: Lint
run: npm run lint
- name: i18n coverage
run: npm run check:i18n
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Build
run: npm run build