replace npm ci with npm install for cross-version compatibility

This commit is contained in:
Дмитрий Мамедов
2026-06-10 17:57:05 +03:00
parent 25c6e9444b
commit b348031ef2

View File

@@ -283,8 +283,8 @@ echo "=== CHECKPOINT: after redis loop ==="
# ─── 6. Dependencies & Prisma ──────────────────────────────────── # ─── 6. Dependencies & Prisma ────────────────────────────────────
echo "=== CHECKPOINT: step 6 ===" echo "=== CHECKPOINT: step 6 ==="
step "6/8 Installing dependencies" step "6/8 Installing dependencies"
echo "=== CHECKPOINT: npm ci ===" echo "=== CHECKPOINT: npm install ==="
npm ci --no-audit --no-fund || error "'npm ci' failed. Check network / ${INSTALL_DIR}/package-lock.json" npm install --no-audit --no-fund || error "'npm install' failed. Check network / ${INSTALL_DIR}/package.json"
echo "=== CHECKPOINT: npm ci done ===" echo "=== CHECKPOINT: npm ci done ==="
info "npm dependencies installed" info "npm dependencies installed"