Skip to content

Commit f660b37

Browse files
author
salacoste
committed
fix(ci): update API documentation validation for Markdown format
- Replace HTML validation with Markdown file checks - Validate index.md, modules.md, and classes directory - Fixes CI failure after TypeDoc → Markdown migration (Story 6.3) Related to: Story 6.9 (GitHub Actions Deployment)
1 parent 5285883 commit f660b37

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,10 @@ jobs:
7171
if: matrix.node-version == '20.x'
7272
run: |
7373
test -d docs/api || exit 1
74-
test -f docs/api/index.html || exit 1
75-
test -f docs/api/assets/search.js || exit 1
76-
echo "API documentation validated successfully"
74+
test -f docs/api/index.md || exit 1
75+
test -f docs/api/modules.md || exit 1
76+
test -d docs/api/classes || exit 1
77+
echo "API documentation (Markdown) validated successfully"
7778
7879
- name: Upload API docs artifact
7980
if: matrix.node-version == '20.x'

0 commit comments

Comments
 (0)