From a5ac0859fb92f27bd281575ec3a188ce5439e2d2 Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 9 Mar 2026 17:15:27 +0000 Subject: [PATCH] ci: disable pnpm cache to fix runner hangs The single-worker Gitea runner consistently hangs when multiple parallel jobs try to restore the pnpm cache simultaneously. Removing cache: pnpm from setup-node trades slightly slower installs for reliable execution. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6437a1d..294bb86 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm + # no pnpm cache — concurrent cache restore hangs on single-worker runner - run: pnpm install --frozen-lockfile @@ -45,7 +45,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm + # no pnpm cache — concurrent cache restore hangs on single-worker runner - run: pnpm install --frozen-lockfile @@ -65,7 +65,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm + # no pnpm cache — concurrent cache restore hangs on single-worker runner - run: pnpm install --frozen-lockfile @@ -110,7 +110,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm + # no pnpm cache — concurrent cache restore hangs on single-worker runner - run: pnpm install --frozen-lockfile @@ -214,7 +214,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 - cache: pnpm + # no pnpm cache — concurrent cache restore hangs on single-worker runner - name: Install dependencies (hoisted for bun compile compatibility) run: |