Skip to content

fix(css): make heading scale resilient — target markdown-block, not hook class #1080

fix(css): make heading scale resilient — target markdown-block, not hook class

fix(css): make heading scale resilient — target markdown-block, not hook class #1080

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-check-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Security audit (npm)
run: npm audit --audit-level=high
- name: Lint + typecheck
run: npm run check
- name: Tests
run: npm run test:models && npm run test:context && npm run test:security
- name: Build
run: npm run build
- name: Validate manifest
run: npm run validate