fix(ci): add npx --yes flag to avoid interactive turbo install prompt that hangs CI
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 1s

This commit is contained in:
2026-03-01 09:07:53 +01:00
parent 5cbbd81384
commit bb54750085
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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