Skip to content

feat(ui): timeline polish — filmstrips + draggable playhead #81

feat(ui): timeline polish — filmstrips + draggable playhead

feat(ui): timeline polish — filmstrips + draggable playhead #81

Workflow file for this run

name: CI
on:
# Trigger on every PR regardless of base branch, so stacked PRs
# (e.g. feat/phase-3 → feat/phase-2) still get CI before being
# retargeted to main after their parent lands.
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: lint, type-check, test, build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm type-check
- run: pnpm test
- run: pnpm build