Skip to content

Commit ac06c24

Browse files
committed
smoke test
1 parent f5938c9 commit ac06c24

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
run: npm run bootstrap
2222
- name: Build documentation
2323
working-directory: ./docs
24-
run: npm ci && npm run build
24+
run: npm ci && npm run build && ./api-docs-smoke-test.sh

docs/api-docs-smoke-test.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
# If TypeDoc succeeds, it creates the directory and generates multiple markdown files within it
4+
5+
if [ ! -d "docs/usage/sdk/api" ]; then
6+
exit 1
7+
fi

0 commit comments

Comments
 (0)