From c35b1c6553b4580fc98c0af4d3255e87455f0246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20Medrano=20Llamas?= Date: Tue, 23 Jun 2026 20:26:37 -0700 Subject: [PATCH] fix(release): run npm ci with ignore-scripts in verify-release action --- .github/actions/verify-release/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/verify-release/action.yml b/.github/actions/verify-release/action.yml index 5d6abbce7f9..d6fe138f8af 100644 --- a/.github/actions/verify-release/action.yml +++ b/.github/actions/verify-release/action.yml @@ -86,7 +86,7 @@ runs: - name: 'Install dependencies for integration tests' shell: 'bash' working-directory: '${{ inputs.working-directory }}' - run: 'npm ci' + run: 'npm ci --ignore-scripts' - name: '🔬 Run integration tests against NPM release' working-directory: '${{ inputs.working-directory }}'