1 parent 8b96b41 commit b1bf7c7Copy full SHA for b1bf7c7
1 file changed
.github/workflows/docs.yml
@@ -20,6 +20,23 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
+ # Node for Mermaid rendering
24
+ - name: Set up Node
25
+ uses: actions/setup-node@v4
26
+ with:
27
+ node-version: "20"
28
+
29
+ - name: Install Mermaid CLI
30
+ run: |
31
+ npm install -g @mermaid-js/mermaid-cli
32
33
+ - name: Render Mermaid diagram(s) for docs (no commit)
34
35
+ node scripts/render-mermaid-to-docs.mjs
36
+ echo "=== docs/ contents after render ==="
37
+ ls -la docs || true
38
39
+ # Python for MkDocs build
40
- name: Set up Python
41
uses: actions/setup-python@v5
42
with:
0 commit comments