Skip to content

Commit 9500c12

Browse files
authored
ci: use --ignore-scripts wherever possible (#5971)
1 parent a594098 commit 9500c12

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- run: npm install -g npm@latest
4545

4646
- name: Bootstrap
47-
run: npm ci
47+
run: npm ci --ignore-scripts
4848

4949
- name: Build 🔧
5050
run: npm run compile

.github/workflows/bundler-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 24
2323
- run: npm install -g npm@latest
2424
- name: Install dependencies
25-
run: npm ci
25+
run: npm ci --ignore-scripts
2626
- name: Build TypeScript packages
2727
run: npm run compile
2828
- name: Run bundler tests

.github/workflows/create-or-update-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
node-version: 22
4444
- run: npm install -g npm@latest
4545

46-
- run: npm ci
46+
- run: npm ci --ignore-scripts
4747

4848
- name: Create/Update Release PR
4949
run: |

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Install and Build 🔧
2727
run: |
28-
npm ci
28+
npm ci --ignore-scripts
2929
npm run compile
3030
3131
- name: Build Docs

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
}}
4949

5050
- name: Bootstrap
51-
run: npm ci
51+
run: npm ci --ignore-scripts
5252

5353
- name: Build 🔧
5454
run: npm run compile

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
node-version: '22'
2626

2727
- name: Bootstrap
28-
run: npm ci
28+
run: npm ci --ignore-scripts
2929

3030
- name: Lint
3131
run: |

.github/workflows/sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- run: npm install -g npm@latest
2020

2121
- name: Bootstrap
22-
run: npm ci
22+
run: npm ci --ignore-scripts
2323

2424
- name: Generate SBOM for core packages
2525
if: ${{ ! startsWith(github.ref, 'refs/tags/experimental') && ! startsWith(github.ref, 'refs/tags/api') }}

.github/workflows/unit-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
}}
5151

5252
- name: Bootstrap
53-
run: npm ci
53+
run: npm ci --ignore-scripts
5454

5555
- name: Build 🔧
5656
run: npm run compile
@@ -86,7 +86,7 @@ jobs:
8686
- run: npm install -g npm@latest
8787

8888
- name: Bootstrap
89-
run: npm ci
89+
run: npm ci --ignore-scripts
9090

9191
- name: Build 🔧
9292
run: |
@@ -111,7 +111,7 @@ jobs:
111111
node-version: 22
112112

113113
- name: Bootstrap
114-
run: npm ci
114+
run: npm ci --ignore-scripts
115115

116116
- name: Build 🔧
117117
run: npm run compile
@@ -137,7 +137,7 @@ jobs:
137137
node-version: 22
138138

139139
- name: Bootstrap
140-
run: npm ci
140+
run: npm ci --ignore-scripts
141141

142142
- name: Build 🔧
143143
run: npm run compile

.github/workflows/w3c-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
node-version: 22
2626

2727
- name: Install and Bootstrap 🔧
28-
run: npm ci
28+
run: npm ci --ignore-scripts
2929

3030
- name: Generate version.ts files
3131
run: npm run version:update

0 commit comments

Comments
 (0)