diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 791d4adb9da..0ba6ab9ab35 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -44,7 +44,7 @@ jobs: - run: npm install -g npm@latest - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: npm run compile diff --git a/.github/workflows/bundler-tests.yml b/.github/workflows/bundler-tests.yml index 2fbaea76f06..75c04c25388 100644 --- a/.github/workflows/bundler-tests.yml +++ b/.github/workflows/bundler-tests.yml @@ -22,7 +22,7 @@ jobs: node-version: 24 - run: npm install -g npm@latest - name: Install dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Build TypeScript packages run: npm run compile - name: Run bundler tests diff --git a/.github/workflows/create-or-update-release-pr.yml b/.github/workflows/create-or-update-release-pr.yml index cba2a31af13..825aef34a1d 100644 --- a/.github/workflows/create-or-update-release-pr.yml +++ b/.github/workflows/create-or-update-release-pr.yml @@ -43,7 +43,7 @@ jobs: node-version: 22 - run: npm install -g npm@latest - - run: npm ci + - run: npm ci --ignore-scripts - name: Create/Update Release PR run: | diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index c485bfafe59..f7c4c333313 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -25,7 +25,7 @@ jobs: - name: Install and Build 🔧 run: | - npm ci + npm ci --ignore-scripts npm run compile - name: Build Docs diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 2fbc2c72132..8130777ec7b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -48,7 +48,7 @@ jobs: }} - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: npm run compile diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3cf7edc36ea..720ab872dcb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: node-version: '22' - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Lint run: | diff --git a/.github/workflows/sbom.yml b/.github/workflows/sbom.yml index 5a737ae68a7..cb8c6b5c4f2 100644 --- a/.github/workflows/sbom.yml +++ b/.github/workflows/sbom.yml @@ -19,7 +19,7 @@ jobs: - run: npm install -g npm@latest - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Generate SBOM for core packages if: ${{ ! startsWith(github.ref, 'refs/tags/experimental') && ! startsWith(github.ref, 'refs/tags/api') }} diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 0c748f95c6b..32d3990a4f0 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -50,7 +50,7 @@ jobs: }} - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: npm run compile @@ -86,7 +86,7 @@ jobs: - run: npm install -g npm@latest - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: | @@ -111,7 +111,7 @@ jobs: node-version: 22 - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: npm run compile @@ -137,7 +137,7 @@ jobs: node-version: 22 - name: Bootstrap - run: npm ci + run: npm ci --ignore-scripts - name: Build 🔧 run: npm run compile diff --git a/.github/workflows/w3c-integration-test.yml b/.github/workflows/w3c-integration-test.yml index d3396171e2f..813455af9d0 100644 --- a/.github/workflows/w3c-integration-test.yml +++ b/.github/workflows/w3c-integration-test.yml @@ -25,7 +25,7 @@ jobs: node-version: 22 - name: Install and Bootstrap 🔧 - run: npm ci + run: npm ci --ignore-scripts - name: Generate version.ts files run: npm run version:update