Skip to content

Commit c640215

Browse files
chore: disable npm script execution (#412)
1 parent 4c0bc3c commit c640215

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ updates:
44
directory: '/'
55
schedule:
66
interval: 'daily'
7+
cooldown:
8+
default-days: 5
79
groups:
810
jest:
911
patterns:
@@ -24,6 +26,8 @@ updates:
2426
directory: '/'
2527
schedule:
2628
interval: 'daily'
29+
cooldown:
30+
default-days: 5
2731
groups:
2832
upload-download-artifact:
2933
patterns:

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
with:
2626
node-version-file: '.nvmrc'
2727

28-
- run: npm ci
28+
- run: npm ci --ignore-scripts
29+
- run: npm run prepare
2930

3031
- uses: actions/upload-artifact@v5
3132
with:

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
registry=https://registry.npmjs.org/
2+
ignore-scripts=true

0 commit comments

Comments
 (0)