From ab97e38f68a81231c52d51a303738e5a2a4dbf5b Mon Sep 17 00:00:00 2001 From: jubnl Date: Wed, 8 Apr 2026 21:17:48 +0200 Subject: [PATCH] ci: remove npm audit fix from install steps npm audit fix exits non-zero when vulnerabilities require breaking-change upgrades (esbuild/vite, vite-plugin-pwa), blocking CI with no actionable fix. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a8423b2..6c11b481 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: cache-dependency-path: server/package-lock.json - name: Install dependencies - run: cd server && npm ci && npm audit fix + run: cd server && npm ci - name: Run tests run: cd server && npm run test:coverage @@ -53,7 +53,7 @@ jobs: cache-dependency-path: client/package-lock.json - name: Install dependencies - run: cd client && npm i && npm audit fix + run: cd client && npm ci - name: Run tests run: cd client && npm run test:coverage