Skip to content

Commit 80c332f

Browse files
Copilotcommjoen
andcommitted
Fix GitHub Actions and Docker build with --legacy-peer-deps for TypeScript 5.9.2 compatibility
Co-authored-by: commjoen <[email protected]>
1 parent 19495f9 commit 80c332f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: "Install & Build BalancerUI"
3535
run: |
3636
cd wrongsecrets-balancer/ui
37-
npm ci
37+
npm ci --legacy-peer-deps
3838
npm run build
3939
- name: Install Balancer
4040
run: |

wrongsecrets-balancer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:24-alpine AS ui
88
RUN mkdir -p /home/app
99
WORKDIR /home/app
1010
COPY ui/package.json ui/package-lock.json ./
11-
RUN npm ci
11+
RUN npm ci --legacy-peer-deps
1212
COPY ui/ ./
1313
RUN npm run build
1414

0 commit comments

Comments
 (0)