We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff23a74 commit 88968a6Copy full SHA for 88968a6
1 file changed
.github/workflows/deploy-pages.yml
@@ -29,9 +29,18 @@ jobs:
29
with:
30
python-version: '3.12'
31
32
+ - name: Setup Node.js
33
+ uses: actions/setup-node@v4
34
+ with:
35
+ node-version: '20'
36
+
37
+ - name: Install Node tools
38
+ run: |
39
+ npm install --no-audit --no-fund --no-save html-minifier-next critical
40
41
- name: Build docs
42
run: |
- pip install markdown
43
+ pip install markdown zstandard
44
python docs/build.py
45
46
- name: Setup Pages
0 commit comments