File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8383 cache-dependency-path : frontend/package-lock.json
8484
8585 - name : Install dependencies
86- run : npm ci
86+ run : npm ci --legacy-peer-deps
8787
8888 - name : Check code formatting
8989 run : npx prettier --check .
@@ -110,7 +110,7 @@ jobs:
110110 cache-dependency-path : frontend/package-lock.json
111111
112112 - name : Install dependencies
113- run : npm ci
113+ run : npm ci --legacy-peer-deps
114114
115115 - name : Run tests with coverage
116116 run : npx jest --coverage --forceExit
@@ -136,7 +136,7 @@ jobs:
136136 cache-dependency-path : frontend/package-lock.json
137137
138138 - name : Install dependencies
139- run : npm ci
139+ run : npm ci --legacy-peer-deps
140140
141141 - name : Build for production
142142 run : npm run build
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ WORKDIR /app
55
66# Copy package files first for better layer caching
77COPY package.json package-lock.json ./
8- RUN npm ci
8+ RUN npm ci --legacy-peer-deps
99
1010# Copy source and build
1111COPY . .
You can’t perform that action at this time.
0 commit comments