Skip to content

Commit a4082d9

Browse files
committed
fix: disable husky in CI to fix build
1 parent 7415ec2 commit a4082d9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434
cache: 'npm'
3535

3636
- name: Install dependencies
37-
run: npm ci
37+
run: |
38+
npm ci --no-audit --prefer-offline
39+
# Disable husky in CI
40+
npm pkg delete scripts.prepare
3841
3942
- name: Build
4043
run: |

0 commit comments

Comments
 (0)