Added --ignore-scripts to all npm ci installs

This commit is contained in:
Karl Ludwig Weise
2026-03-31 17:26:56 +02:00
parent a57b80281d
commit d2b3e544bb
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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
+4 -4
View File
@@ -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
+1 -1
View File
@@ -23,7 +23,7 @@ jobs:
cache: "npm"
- name: Install dependencies
run: npm ci
run: npm ci --ignore-scripts
- name: Update package.json version
run: |