We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d05d170 commit deb9388Copy full SHA for deb9388
2 files changed
.github/workflows/deploy.yml
@@ -36,8 +36,20 @@ jobs:
36
version: latest
37
run_install: false
38
39
+ - name: 📦 Get pnpm store directory
40
+ shell: bash
41
+ run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
42
+
43
+ - name: 📦 Setup pnpm cache
44
+ uses: actions/cache@v4
45
+ with:
46
+ path: ${{ env.STORE_PATH }}
47
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
48
+ restore-keys: |
49
+ ${{ runner.os }}-pnpm-store-
50
51
- name: 📦 Install dependencies
- run: pnpm install --frozen-lockfile
52
+ run: pnpm install --no-frozen-lockfile
53
54
- name: 🏗️ Build VitePress
55
run: NODE_OPTIONS=--max-old-space-size=8192 pnpm docs:build
.npmrc
@@ -0,0 +1,2 @@
1
+# Allow esbuild to run its postinstall script
2
+onlyBuiltDependencies[]=esbuild
0 commit comments