Skip to content

Commit

Permalink
smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
teogeb committed Dec 9, 2024
1 parent f5938c9 commit ac06c24
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
run: npm run bootstrap
- name: Build documentation
working-directory: ./docs
run: npm ci && npm run build
run: npm ci && npm run build && ./api-docs-smoke-test.sh
7 changes: 7 additions & 0 deletions docs/api-docs-smoke-test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

# If TypeDoc succeeds, it creates the directory and generates multiple markdown files within it

if [ ! -d "docs/usage/sdk/api" ]; then
exit 1
fi

0 comments on commit ac06c24

Please sign in to comment.