Timothy Jaeryang Baek 2 月之前
父節點
當前提交
86e46ebe6a
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      .github/workflows/format-build-frontend.yaml
  2. 1 1
      Dockerfile

+ 1 - 1
.github/workflows/format-build-frontend.yaml

@@ -59,7 +59,7 @@ jobs:
           node-version: '22'
 
       - name: Install Dependencies
-        run: npm ci
+        run: npm ci --force
 
       - name: Run vitest
         run: npm run test:frontend

+ 1 - 1
Dockerfile

@@ -30,7 +30,7 @@ WORKDIR /app
 RUN apk add --no-cache git
 
 COPY package.json package-lock.json ./
-RUN npm ci
+RUN npm ci --force
 
 COPY . .
 ENV APP_BUILD_HASH=${BUILD_HASH}