Skip to content

Commit 921ec2d

Browse files
committed
Ignore scripts when running npm ci
1 parent 7505d48 commit 921ec2d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: ${{matrix.node}}
3939
cache: 'npm'
4040
- name: Install packages
41-
run: npm ci
41+
run: npm ci --ignore-scripts
4242
- name: Build project
4343
run: npm run build
4444
- name: Run tests

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Update npm
3737
run: npm install -g npm@latest
3838
- name: Install packages
39-
run: npm ci
39+
run: npm ci --ignore-scripts
4040
- name: Build project
4141
run: npm run build
4242
- name: Publish

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: '24'
3939
cache: 'npm'
4040
- name: Install packages
41-
run: npm ci
41+
run: npm ci --ignore-scripts
4242
- name: Run tests
4343
run: npm run test
4444
- name: Create Sonar properties

0 commit comments

Comments
 (0)