From c31692bae0f21da4858333e56ee36651ef2fe1ec Mon Sep 17 00:00:00 2001 From: wh-leader Date: Mon, 11 May 2026 09:29:28 +0200 Subject: [PATCH] fix: remove npm cache from Gitea Actions Gitea Actions may not support npm cache like GitHub Actions does. Simplify to just node version. --- .gitea/workflows/ci-cd.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index c0a5282..8d0d59f 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -19,7 +19,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - name: Install dependencies run: npm ci