Skip to content

test(streaming): CI-able perf-regression guard + share top-level render opts #53

test(streaming): CI-able perf-regression guard + share top-level render opts

test(streaming): CI-able perf-regression guard + share top-level render opts #53

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build
# Differentially validate the JS CommonMark normalizer against the
# reference normalize.py. The script fetches normalize.py from a pinned,
# hash-verified upstream commit (not checked in) and runs the diff with
# python3 (preinstalled on the runner).
- name: Normalizer parity
run: npm run check:normalizer-parity