Skip to content

Commit a0447f6

Browse files
author
salacoste
committed
fix(ci): correct API documentation validation for TypeDoc Markdown output
- Remove check for non-existent index.md file - Keep validation for modules.md (main entry point) - Add validation for interfaces directory - TypeDoc Markdown plugin generates modules.md, not index.md
1 parent 61f92d8 commit a0447f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
if: matrix.node-version == '20.x'
7272
run: |
7373
test -d docs/api || exit 1
74-
test -f docs/api/index.md || exit 1
7574
test -f docs/api/modules.md || exit 1
7675
test -d docs/api/classes || exit 1
76+
test -d docs/api/interfaces || exit 1
7777
echo "API documentation (Markdown) validated successfully"
7878
7979
- name: Upload API docs artifact

0 commit comments

Comments
 (0)