Skip to content

Merge pull request #18 from anefzaoui/docs/readme-restructure #94

Merge pull request #18 from anefzaoui/docs/readme-restructure

Merge pull request #18 from anefzaoui/docs/readme-restructure #94

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
quality:
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'
# postinstall builds the CSS bundle; the rest are explicit gates.
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run format:check
- run: pnpm run typecheck
- run: pnpm test
- run: pnpm run build