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: |