mirror of
https://github.com/ruvnet/RuView
synced 2026-08-02 19:11:46 +00:00
7f5a692632
Squashed merge of feat/nvsim-pipeline-simulator (29 commits). ## Shipped - ADR-089 nvsim crate (Accepted) — 50/50 tests, ~4.5 M samples/s, pinned witness cc8de9b01b0ff5bd… - ADR-092 dashboard implementation (Implemented) — 8/12 §11 gates ✅, 4/12 ⚠ (external infra) - ADR-093 dashboard gap analysis (Implemented) — 21/21 catalogued gaps closed - Plus ADR-090 (proposed conditional) and ADR-091 (proposed research-only) ## Live deploy https://ruvnet.github.io/RuView/nvsim/ ## Infra - nvsim-server Dockerfile + GHCR publish workflow (.github/workflows/nvsim-server-docker.yml) - axe-core + Playwright cross-browser CI (.github/workflows/dashboard-a11y.yml) - gh-pages auto-deploy workflow already in place (preserves observatory + pose-fusion siblings) Co-Authored-By: claude-flow <ruv@ruv.net>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: Dashboard a11y + cross-browser
|
|
|
|
# Runs axe-core a11y assertions on the built dashboard across
|
|
# Chromium, Firefox, and WebKit. Closes ADR-092 §11.5 (axe-core)
|
|
# and §11.8 (cross-browser).
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths: ['dashboard/**', 'v2/crates/nvsim/**']
|
|
pull_request:
|
|
paths: ['dashboard/**']
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
a11y:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with: { targets: wasm32-unknown-unknown }
|
|
|
|
- run: cargo install wasm-pack --locked --version 0.13.x || true
|
|
|
|
- name: Build nvsim WASM
|
|
working-directory: v2
|
|
run: |
|
|
wasm-pack build crates/nvsim --target web \
|
|
--out-dir ../../dashboard/public/nvsim-pkg \
|
|
--release -- --no-default-features --features wasm
|
|
|
|
- uses: actions/setup-node@v4
|
|
with: { node-version: 20, cache: npm, cache-dependency-path: dashboard/package-lock.json }
|
|
|
|
- working-directory: dashboard
|
|
run: |
|
|
npm ci
|
|
npm install --save-dev @playwright/test @axe-core/playwright
|
|
npx playwright install --with-deps
|
|
npm run build
|
|
npx playwright test
|