This commit is contained in:
Timothy Jaeryang Baek 2025-07-17 17:53:36 +04:00
parent d4ece7384c
commit 86e46ebe6a
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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}