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 c165be6 commit dea7bdcCopy full SHA for dea7bdc
1 file changed
.github/workflows/doc-deploy.yml
@@ -49,15 +49,21 @@ jobs:
49
with:
50
node-version: '20'
51
52
+ # Setup pnpm
53
+ - name: Setup pnpm
54
+ uses: pnpm/action-setup@v4
55
+ with:
56
+ version: latest
57
+
58
# Install dependencies in home directory
59
- name: Install Dependencies
60
working-directory: home
- run: npm ci
61
+ run: pnpm install --frozen-lockfile
62
63
# Build the documentation site
64
- name: Build Documentation
65
- run: npm run build
66
+ run: pnpm run build
67
env:
68
NODE_OPTIONS: --max-old-space-size=4096
69
0 commit comments