feat: explicit pnpm ci args (#755)

This commit is contained in:
Dominik Pschenitschni
2025-05-13 12:57:33 +02:00
committed by GitHub
parent a62ac800c4
commit ac244d3915
3 changed files with 3 additions and 3 deletions

View File

@@ -14,5 +14,5 @@ runs:
cache-dependency-path: frontend/pnpm-lock.yaml
- name: Install dependencies
working-directory: frontend
run: pnpm install
run: pnpm install --frozen-lockfile --prefer-offline
shell: bash

View File

@@ -250,7 +250,7 @@ jobs:
- name: Build desktop app
working-directory: desktop
run: |
pnpm install --fetch-timeout 100000
pnpm install --frozen-lockfile --prefer-offline --fetch-timeout 100000
node build.js "${{ steps.ghd.outputs.describe }}" ${{ github.ref_type == 'tag' }}
- name: Upload to S3
uses: kolaente/s3-action@41963184b524ccac734ea4d8c964ac74b5b1af89 # v1.2.1

View File

@@ -10,7 +10,7 @@ ENV CYPRESS_INSTALL_BINARY=0
COPY frontend/ ./
RUN npm install -g corepack && corepack enable && \
pnpm install && \
pnpm install --frozen-lockfile --prefer-offline && \
pnpm run build
FROM --platform=$BUILDPLATFORM ghcr.io/techknowlogick/xgo:go-1.23.x@sha256:d45f463381d025efa2fa0fb8617d2b04694e650bfd5d206ae1ef13d0c78fdea6 AS apibuilder