Fix: Replace npm ci with npm install to address missing package-lock.json issue

This commit is contained in:
stabgan
2025-03-26 23:30:11 +05:30
parent 24e673de73
commit f47fa29323
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ jobs:
npm config set registry https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
run: npm install
- name: Build package
run: npm run build

View File

@@ -17,7 +17,7 @@ COPY package*.json ./
# Install dependencies with development environment for building
ENV NODE_ENV=development
RUN npm ci --no-optional --unsafe-perm
RUN npm install --no-optional
# Copy source code
COPY . .