From d2b3e544bb276c2acf9b234933f548595f962df1 Mon Sep 17 00:00:00 2001 From: Karl Ludwig Weise Date: Tue, 31 Mar 2026 17:26:56 +0200 Subject: [PATCH] Added --ignore-scripts to all npm ci installs --- .github/workflows/main-deploy.yml | 2 +- .github/workflows/pr-checks.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main-deploy.yml b/.github/workflows/main-deploy.yml index 7b3372a..eb3294e 100644 --- a/.github/workflows/main-deploy.yml +++ b/.github/workflows/main-deploy.yml @@ -19,7 +19,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Security audit run: npm audit --audit-level=high diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 2513c4e..a981e56 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -20,7 +20,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Run linting run: npm run lint @@ -38,7 +38,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Run type checking run: npm run check @@ -56,7 +56,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Run unit tests run: npm run test:unit -- --run @@ -85,7 +85,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Build application run: npm run build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d0f0c7..888b935 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: cache: "npm" - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Update package.json version run: |