From c9e6c1970c31aa3cb254f1f38039eaf57f3ea8b1 Mon Sep 17 00:00:00 2001 From: Millaguie Date: Fri, 28 Nov 2025 00:34:10 +0100 Subject: [PATCH] fix(ci): remove npm cache dependency on package-lock.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use npm install instead of npm ci since package-lock.json files are not committed to the repository. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/ci.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index eb55ae0..39b6706 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -20,13 +20,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: backend/package-lock.json - name: Install backend dependencies run: | cd backend - npm ci + npm install - name: Run ESLint (backend) run: | @@ -48,13 +46,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: frontend/package-lock.json - name: Install frontend dependencies run: | cd frontend - npm ci + npm install - name: Run ESLint (frontend) run: | @@ -72,13 +68,11 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: frontend/package-lock.json - name: Install frontend dependencies run: | cd frontend - npm ci + npm install - name: Build frontend run: |