From 28ba988e6591ea90934a8f15dddaa078ea82d002 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 01:49:21 +0000 Subject: [PATCH] Fix CI workflow: use npm install instead of npm ci (no lock file) --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ceafe88..5d18216 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,13 +18,13 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci + run: npm install - name: Build run: npm run build - name: Run tests - run: npm test --if-present + run: npm test - name: Run lint - run: npm run lint --if-present + run: npm run lint