We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9049a commit cd8d8c0Copy full SHA for cd8d8c0
1 file changed
.github/workflows/on-push.yml
@@ -43,3 +43,14 @@ jobs:
43
- name: Build
44
run: yarn build
45
working-directory: ./example
46
+
47
+ # Check documentation
48
+ - name: Generate documentation
49
+ run: yarn build:docs
50
51
+ - name: Check for documentation changes
52
+ run: |
53
+ if [[ -n $(git status --porcelain | grep "README.md") ]]; then
54
+ echo "Documentation is not up to date!"
55
+ exit 1
56
+ fi
0 commit comments