validation · git:20260906.3343436 · 2026-09-06 · sha256 f870b467358fe994
validation git:20260906.3343436A
Immutable. This exact content is served forever at /api/v1/blob/f870b467358fe994.
--- name: validation description: Use when checking changes, staging files, pushing commits, or deciding whether production is live. --- # Validation ## Overview Choose checks that prove the changed behavior without claiming more than they prove. ## When to Use Use before completion reports, commits, pushes, deployment checks, or live-status claims. ## When NOT to Use Do not run the full application suite for documentation-only changes. ## Core Process 1. Match checks to changed paths. 2. Run `git diff --check`. 3. Inspect `git status --short` and the diff; classify unrelated dirty files before staging. 4. For deletions, search manifest, import, timeline, and generated-data references before committing. 5. Stage explicit paths only. 6. For a push, verify the exact commit's deployment workflow and smoke-test the affected route in Chromium for page errors. Documentation-only check: ```bash git diff --check ``` Application content or data checks: ```bash npm run typecheck npm run test:gate npm run build ``` Image version live verification: ```bash npm run check:image-sboms # Manual, read-only; exits nonzero when any evidence is missing npm run update:image-versions # Regenerate; exits zero even with unavailable images ``` `check:image-sboms` verifies cosign signatures and SPDX referrer existence for every registered image. It performs no documentation or source-tree fallbacks. Missing evidence means the website does not display that product's versions. The **scheduled** live smoke test is the daily `Update Live Data` workflow, not this command: it runs the same verification against the live registry every day and files deduplicated issues. `check:image-sboms` is its manual, read-only form — it writes nothing and deploys nothing. Both exit non-zero for different reasons, and the difference matters: | Exit | Meaning | Outputs | |---|---|---| | `0` | Verified, or evidence is genuinely missing | Written and sanitized | | `1` | `--check-only` found an unavailable image | Nothing written | | `2` | Tooling/transport failure — we could not look | Nothing written, nothing deployed | Exit `2` is never a reason to re-run with the check disabled. A missing `oras` or `cosign` binary, a timeout, a throttled registry, or malformed tool output all block promotion on purpose: an outage must not be published as "this product has no verified versions". Full code checks: ```bash npm run lint:fix npm run typecheck npm run test:gate npm run build ``` ## Common Rationalizations | Rationalization | Reality | |---|---| | "The build passed, so it works." | A build does not run route initialization. An eager `import.meta.glob()` manifest failure only appears in a browser. | | "The suite is red anyway, so this failure is expected." | `test:gate` judges against a recorded baseline. Re-derive the count from `tests/known-failures.txt`; never decide safety from a bare `test:run`. | | "The deploy is green, so my change is live." | Match the SHA. A green run for a different commit says nothing about yours. | | "My change is missing from the browser, so the code is wrong." | Identify the process on the port first. A stale `vite preview` serves a frozen `dist/` and never hot-reloads. | | "Nothing references this file, so it is dead code." | `WolvesComicReader.vue` serves eleven non-Wolves albums. A `/wolves/` smoke test will not notice their loss. | ## Red Flags - Completion is based only on a local build. - A different commit's deployment is cited. - Unrelated generated changes are staged. - A deletion is committed while a manifest still references the missing file. - Only a build is checked for a route that eagerly loads runtime data. - `git add .` or `git add -A` is used. - More than one dev server is listening, or a `vite preview` is up during source work. - A change is called missing from the browser before the serving process and its port were identified. - `npm run test:run` output is used to decide whether a change is safe. - `tests/known-failures.txt` is re-recorded in the same commit as the change that added the failures. - Something is deleted as "dead code" without checking the non-Wolves experiences that share `WolvesComicReader.vue`. ## Verification After pushing, verify the exact commit: ```bash sha=$(git rev-parse HEAD) gh run list --repo projectbluefin/website \ --workflow "Deploy to GitHub Pages" --commit "$sha" --limit 1 \ --json databaseId,headSha,status,conclusion,url ``` Production is complete only when the run has the same SHA, status `completed`, and conclusion `success`. For multi-entry builds, also smoke-test every path listed in `../../reference/production-entrypoints.md`; adding an HTML entry alone is insufficient unless the Vite Rollup input and directory redirect include it. For runtime manifests, the browser smoke must assert both a non-empty rendered body and zero `pageerror` events. ## References Procedure lives here; the detail each area has already cost the repo lives in these references. Load only the one the change needs. | Reference | Covers | |---|---| | [`references/baseline-gate.md`](references/baseline-gate.md) | Why `test:gate` is the signal, `tests/known-failures.txt`, and re-recording rules. | | [`references/wolves-show-validation.md`](references/wolves-show-validation.md) | Why a green suite proves nothing about the show, and Wolves timing validation. | | [`references/component-tests.md`](references/component-tests.md) | Component test patterns and the traps that shipped past them. | | [`references/dev-server-hygiene.md`](references/dev-server-hygiene.md) | "I don't see my change": ports, stale `vite preview`, HMR proof. | | [`references/ci-signals.md`](references/ci-signals.md) | Cache keys as part of the cache path list, and red integration branches. | - `../../reference/production-entrypoints.md` - `../../architecture/runtime-data-flow.md`