We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7774063 commit 4fea608Copy full SHA for 4fea608
1 file changed
.github/workflows/Tests.yaml
@@ -118,3 +118,22 @@ jobs:
118
- name: Ensure we can build JS package
119
run: yarn pack
120
working-directory: javascript
121
+
122
+ build-docs: # validate that doc can be built
123
+ runs-on: ubuntu-24.04
124
+ needs: generate-rules
125
126
+ steps:
127
+ - name: Checkout repo
128
+ uses: actions/checkout@v4
129
130
+ - name:
131
+ run: hatch run docs:build
132
133
+ - name: Save doc artifact
134
+ uses: actions/upload-artifact@v4
135
+ with:
136
+ path: |
137
+ site/
138
+ name: doc
139
+ retention-days: 1
0 commit comments