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