From 761f45723517c6e4b64821b3f32d315d3b305156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Dante=20Ursini?= Date: Tue, 17 Mar 2026 16:10:25 -0300 Subject: [PATCH] fix: continue pipeline when npm cache fails on Gitea runner Add continue-on-error: true to setup-node step to prevent cascade failure when act-based runner cannot resolve cache-dependency-path. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/nextjs-deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/nextjs-deploy.yaml b/.gitea/workflows/nextjs-deploy.yaml index 7e0346d..a8e1b9d 100644 --- a/.gitea/workflows/nextjs-deploy.yaml +++ b/.gitea/workflows/nextjs-deploy.yaml @@ -29,6 +29,7 @@ jobs: - name: 🟢 Setup Node 20 + Cache uses: actions/setup-node@v4 + continue-on-error: true with: node-version: 20 cache: "npm"