Skip to content

docs(readme): add Chrome DevTools MCP, sync Adopted by list with main… #79

docs(readme): add Chrome DevTools MCP, sync Adopted by list with main…

docs(readme): add Chrome DevTools MCP, sync Adopted by list with main… #79

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20', '22']
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: blackwell-systems/gcf
path: gcf
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx tsc --noEmit
- name: Unit tests
run: npx vitest run --reporter=verbose --exclude tests/conformance_v2.test.ts --exclude tests/roundtrip.test.ts
- name: Conformance tests (133 fixtures)
run: npx vitest run tests/conformance_v2.test.ts --reporter=verbose
- name: Property-based round-trip (100K random + 100K adversarial)
run: npx vitest run tests/roundtrip.test.ts --reporter=verbose