Skip to content

Commit

Permalink
ci: add --ignore-scripts flag when installing dependencies in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rackstar committed Jan 6, 2025
1 parent 290d89f commit 9c97f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --ignore-scripts

- name: Build package
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
run: npm ci --ignore-scripts

- name: Build package
run: npm run build
Expand Down

0 comments on commit 9c97f3d

Please sign in to comment.