Skip to content

Commit 86834b8

Browse files
committed
Fix GitHub Actions dependency conflict
- Add --legacy-peer-deps flag to npm ci command - Resolves TypeScript version conflict between [email protected] and [email protected] - Ensures CI/CD pipeline can handle peer dependency conflicts - Tested locally and build works correctly
1 parent 5c4d4fd commit 86834b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cache: 'npm'
3434

3535
- name: Install dependencies
36-
run: npm ci
36+
run: npm ci --legacy-peer-deps
3737

3838
- name: Build
3939
run: npm run build

0 commit comments

Comments
 (0)