From b626d3b2f6329e2f747c2ad87cdcf1b52c64409f Mon Sep 17 00:00:00 2001 From: cesnimda Date: Fri, 27 Mar 2026 13:25:38 +0100 Subject: [PATCH] Harden frontend install step in CI --- .gitea/workflows/ci-deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-deploy.yml b/.gitea/workflows/ci-deploy.yml index 73a2726..b68df0a 100644 --- a/.gitea/workflows/ci-deploy.yml +++ b/.gitea/workflows/ci-deploy.yml @@ -33,7 +33,13 @@ jobs: - name: Install frontend deps working-directory: job-tracker-ui - run: npm ci + env: + npm_config_audit: 'false' + npm_config_fund: 'false' + run: | + node -v + npm -v + npm ci --no-audit --no-fund - name: Test frontend working-directory: job-tracker-ui