Skip to content

Fix/thumbnail fix

Fix/thumbnail fix #10

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
# Correctness gate only — deployment lives in release.yml (manual dispatch).
permissions:
contents: read
# A newer run for the same ref cancels older in-flight ones.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test & build (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- name: Typecheck
run: npx tsc --noEmit
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build