File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 55 branches : [main]
66 pull_request :
77 branches : [main]
8+ workflow_dispatch :
89
910jobs :
1011 documentation-structure :
1516
1617 - name : Check documentation structure
1718 run : |
18- # Verify required documentation files exist
19+ # Verify patterns documentation exists
20+ test -d docs/patterns || { echo "Error: docs/patterns/ missing"; exit 1; }
1921 test -f docs/quickstart.md || { echo "Error: docs/quickstart.md missing"; exit 1; }
20- test -f docs/architecture.md || { echo "Error: docs/architecture.md missing"; exit 1; }
21- test -f docs/tutorial.md || { echo "Error: docs/tutorial.md missing"; exit 1; }
22- test -f docs/api-reference.md || { echo "Error: docs/api-reference.md missing"; exit 1; }
22+ test -f docs/index.md || { echo "Error: docs/index.md missing"; exit 1; }
2323 echo "All required documentation files present"
Original file line number Diff line number Diff line change 277277 branches : [main]
278278 pull_request :
279279 branches : [main]
280+ workflow_dispatch :
280281
281282jobs :
282283 validate :
You can’t perform that action at this time.
0 commit comments