From b2dcc6a4c38aa2b044915ce80c5b0018b450cfc5 Mon Sep 17 00:00:00 2001 From: Wiktoria Van Harneveldt Date: Mon, 13 Oct 2025 22:05:35 +0200 Subject: [PATCH] fix: Update dependency installation in deployment workflow --- .github/workflows/deploy.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bf7887a..1de63b9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,12 @@ jobs: node-version-file: .nvmrc - name: Install dependencies - run: npm ci + run: | + if [ -f package-lock.json ]; then + npm ci --no-audit --no-fund + else + npm install --no-audit --no-fund + fi - name: Lint run: npm run lint