Skip to content

Commit 9bd97df

Browse files
ci: add --ignore-scripts to npm install commands (#599)
1 parent ce35757 commit 9bd97df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/__call-ci-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
run: npm version "${RELEASE_VERSION}" --no-git-tag-version
7272

7373
- name: Install dependencies
74-
run: npm install
74+
run: npm install --ignore-scripts
7575

7676
- name: Test
7777
id: test

.github/workflows/__call-update-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: npm version "${RELEASE_VERSION}" --no-git-tag-version
6161

6262
- name: Install dependencies
63-
run: npm install
63+
run: npm install --ignore-scripts
6464

6565
- name: Build
6666
run: npm run build

.github/workflows/__renovate-config-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Install npm dependencies
3737
if: steps.find-files.outputs.found != ''
38-
run: npm install --global renovate
38+
run: npm install --ignore-scripts --global renovate
3939

4040
- name: renovate config validator
4141
if: steps.find-files.outputs.found != ''

0 commit comments

Comments
 (0)