From 05fd91380b94f83970475bcda85d277d2dd00063 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Mon, 2 Feb 2026 21:46:56 -0500 Subject: [PATCH] ci: add --ignore-scripts to npm install commands --- .github/workflows/__call-ci-node.yml | 2 +- .github/workflows/__call-update-npm.yml | 2 +- .github/workflows/__renovate-config-validator.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/__call-ci-node.yml b/.github/workflows/__call-ci-node.yml index 6087eaa9..e776572e 100644 --- a/.github/workflows/__call-ci-node.yml +++ b/.github/workflows/__call-ci-node.yml @@ -71,7 +71,7 @@ jobs: run: npm version "${RELEASE_VERSION}" --no-git-tag-version - name: Install dependencies - run: npm install + run: npm install --ignore-scripts - name: Test id: test diff --git a/.github/workflows/__call-update-npm.yml b/.github/workflows/__call-update-npm.yml index 2c03d49b..8c6f4a88 100644 --- a/.github/workflows/__call-update-npm.yml +++ b/.github/workflows/__call-update-npm.yml @@ -60,7 +60,7 @@ jobs: run: npm version "${RELEASE_VERSION}" --no-git-tag-version - name: Install dependencies - run: npm install + run: npm install --ignore-scripts - name: Build run: npm run build diff --git a/.github/workflows/__renovate-config-validator.yml b/.github/workflows/__renovate-config-validator.yml index 364ee097..128cd6e6 100644 --- a/.github/workflows/__renovate-config-validator.yml +++ b/.github/workflows/__renovate-config-validator.yml @@ -35,7 +35,7 @@ jobs: - name: Install npm dependencies if: steps.find-files.outputs.found != '' - run: npm install --global renovate + run: npm install --ignore-scripts --global renovate - name: renovate config validator if: steps.find-files.outputs.found != ''