fix(docs): pipeline diagram nodes all same size - #71
Merged
Conversation
Build had a one-line label while every other node had two, so Mermaid
auto-sized it narrower. Add a matching subtitle ("Implement by
assembly") so all four nodes render the same width.
rubenvdlinde
added a commit
that referenced
this pull request
Jul 26, 2026
* ci(quality): --ignore-npm-errors on cyclonedx SBOM step (#70) * ci(quality): install app deps before enabling app (phpunit job) (#71) * ci(quality): --omit=dev on the SBOM job's npm audit The SBOM job ran 'npm audit --audit-level=critical' WITHOUT --omit=dev, so it gated on dev-only build-tooling criticals (e.g. tar via node-gyp/cacache) that never ship in the app bundle — it had been red on those regardless. The dedicated 'Security (npm)' job already uses --audit-level=critical --omit=dev; make the SBOM job consistent so both gate only on production-dependency criticals. --------- Co-authored-by: rubenvdlinde <rubenvdlinde@noreply.codeberg.org> Co-authored-by: Conduction Release Bot <release-bot@conduction.nl>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Pipeline diagram on Spec-Driven Development had four nodes of three different widths because
3 · Buildwas the only single-line label. Mermaid auto-sizes nodes to label content, so Build came out narrower than the rest. Adding the matching subtitle ("Implement by assembly") brings all four nodes to the same width without any CSS hack.Why this fix and not CSS
A
min-widthoverride inconduction-mermaid.csswould affect every Mermaid node on every page site-wide — riskier and less honest. Content-side parity matches what every other node already does and the bullet list below the diagram already covers the same idea, so the new subtitle stays accurate.Test plan