ci: simplify QA checks to avoid potential hangs
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 11s
Build & Deploy / 🧪 QA (push) Successful in 1m26s
Build & Deploy / 🏗️ Build (push) Successful in 4m8s
Build & Deploy / 🚀 Deploy (push) Failing after 21s
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-02-10 22:33:23 +01:00
parent 0ec830f5c6
commit 6c739e2726

View File

@@ -124,13 +124,12 @@ jobs:
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: 🧪 Parallel Checks
- name: 🧪 QA Checks
if: github.event.inputs.skip_checks != 'true'
run: |
pnpm lint &
pnpm typecheck &
pnpm test &
wait
pnpm lint
pnpm typecheck
pnpm test
# ──────────────────────────────────────────────────────────────────────────────
# JOB 3: Build & Push