ci: add aggressive runner cleanup steps to workflows
Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 5s
🚀 Build & Deploy / 🧪 QA (push) Successful in 1m36s
🚀 Build & Deploy / 🏗️ Build (push) Successful in 13m32s
🚀 Build & Deploy / 🚀 Deploy (push) Successful in 12s
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 3m55s
🚀 Build & Deploy / 🔔 Notify (push) Successful in 1s
Nightly QA / call-qa-workflow (push) Failing after 29s

This commit is contained in:
2026-04-24 01:14:34 +02:00
parent e8b8a4073e
commit 52f4f30336
2 changed files with 15 additions and 3 deletions

View File

@@ -25,7 +25,9 @@ jobs:
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: |
rm -rf .next .turbo node_modules || true
pnpm install --frozen-lockfile
- name: 🧪 Parallel Checks
run: |
pnpm lint &