From bb54750085d32a23984c729b39689c8af3defe96 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 1 Mar 2026 09:07:53 +0100 Subject: [PATCH] fix(ci): add npx --yes flag to avoid interactive turbo install prompt that hangs CI --- .gitea/workflows/deploy.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index feba37d..086c636 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -163,7 +163,7 @@ jobs: cp .npmrc _at-mintel/ cd _at-mintel pnpm install - npx turbo run build + npx --yes turbo run build - name: Install dependencies run: pnpm install --no-frozen-lockfile - name: 🧪 QA Checks diff --git a/Dockerfile b/Dockerfile index 5f1aca3..5ae9e14 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store \ echo "@mintel:registry=https://npm.infra.mintel.me" > /at-mintel/.npmrc && \ echo "//npm.infra.mintel.me/:_authToken=\${NPM_TOKEN}" >> /at-mintel/.npmrc && \ cp /at-mintel/.npmrc .npmrc && \ - cd /at-mintel && pnpm install && npx turbo run build && \ + cd /at-mintel && pnpm install && npx --yes turbo run build && \ cd /app && pnpm install --no-frozen-lockfile && \ rm /at-mintel/.npmrc .npmrc