fix pnpm bug
Some checks failed
Deploy website to VPS / build-and-deploy (push) Failing after 23s

This commit is contained in:
Evan Scamehorn
2026-01-08 19:20:45 -06:00
parent 79e4593db3
commit f3ff668cb9

View File

@@ -26,7 +26,9 @@ jobs:
- name: Install Node Dependencies - name: Install Node Dependencies
run: | run: |
if [ -f "package.json" ]; then if [ -f "package.json" ]; then
pnpm install --no-frozen-lockfile || npm install # Force pnpm to use the version baked into our Nix image
pnpm config set manage-package-manager false
pnpm install --no-frozen-lockfile
fi fi
- name: Build with Hugo - name: Build with Hugo