ci: simplify QA checks to avoid potential hangs

This commit is contained in:
2026-02-10 22:33:23 +01:00
parent c05506adbd
commit b1f53912a9

View File

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