From 41cb49eeda4764013bec9e7b7853a02891c3d77a Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 6 Jan 2026 12:44:34 +0100 Subject: [PATCH] fix: Remove npm cache from CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gitea Actions runner hangs on npm cache config. Removing cache option to fix CI pipeline. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 30a25db..7f3d63c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -27,7 +27,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - name: Install dependencies run: npm ci