From af2ffc39494b403c6a94d69d1ba3692228aa7bb6 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 6 Jun 2026 23:27:58 +0200 Subject: [PATCH] chore(ci): re-enable pnpm cache Runner cache backend is now reachable from the job container, so `cache: pnpm` on setup-node works again. Reverts b77c097. --- .gitea/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6c681a1..e84a994 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -21,15 +21,11 @@ jobs: with: version: 11.0.9 - # NOTE: `cache: pnpm` is intentionally omitted. The Gitea cache server - # at 10.0.23.3:42951 is unreachable from the runner container, and each - # cache restore/save hangs ~4m40s on TCP timeout before failing. With - # caching off, total CI time is ~45s. Re-enable once the act_runner - # cache backend is reachable from inside the job container. - name: Setup Node uses: actions/setup-node@v4 with: node-version: 22 + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile