This commit is contained in:
2026-03-21 18:18:16 +03:30
parent 2d109ab302
commit c9aa995259
2 changed files with 2 additions and 5 deletions
+1 -4
View File
@@ -63,7 +63,7 @@ jobs:
- name: Install system dependencies
run: |
apt-get install -y git nodejs npm build-essential
apt-get install -y git
- name: Checkout repository
run: |
@@ -78,9 +78,6 @@ jobs:
npm config set fetch-retries 5
npm config set fetch-retry-mintimeout 20000
- name: Install dependencies
run: |
npm install --registry=https://package-mirror.liara.ir/repository/npm/
- name: Setup SSH key
+1 -1
View File
@@ -30,7 +30,7 @@ FROM base AS deps
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
RUN npm ci --ignore-scripts
# ---- build stage ----
FROM base AS builder