Skip to content

Commit c5a9871

Browse files
authored
fix: installing with ignore scripts flag (#230)
1 parent fdb8503 commit c5a9871

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/nodejs.yml

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

2222
- name: npm install, build, and test
2323
run: |
24-
npm ci
24+
npm ci --ignore-scripts
2525
npm run build --if-present
2626
npm test
2727
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
registry-url: 'https://registry.npmjs.org'
3131

3232
- run: |
33-
npm ci
33+
npm ci --ignore-scripts
3434
npm run build --if-present
3535
if: ${{ steps.release.outputs.release_created }}
3636

0 commit comments

Comments
 (0)