From 5aeda1c1957b0aeb1cbf4df00574718a131a7a30 Mon Sep 17 00:00:00 2001 From: kempersc Date: Sun, 11 Jan 2026 16:43:49 +0100 Subject: [PATCH] fix(ci): disable pnpm caching due to path resolution issues The setup-node action fails to cache pnpm dependencies because the store path /workspace/kempersc/glam/.pnpm-store/v3 can't be resolved. Disabling caching for now to get the build working. --- .forgejo/workflows/deploy-frontend.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy-frontend.yml b/.forgejo/workflows/deploy-frontend.yml index 7b5d2baae3..b7b8dd8cff 100644 --- a/.forgejo/workflows/deploy-frontend.yml +++ b/.forgejo/workflows/deploy-frontend.yml @@ -54,8 +54,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} - cache: 'pnpm' - cache-dependency-path: frontend/pnpm-lock.yaml + # Note: pnpm caching disabled due to path resolution issues with Forgejo runner - name: Install dependencies working-directory: frontend