feat: implement failfast logic in pipelines

This commit is contained in:
2026-02-11 00:58:07 +01:00
parent ca812d3003
commit 8c24e2b6cd
2 changed files with 3 additions and 7 deletions

View File

@@ -32,9 +32,5 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.REGISTRY_PASS }}
- name: 🧪 Parallel Checks
run: |
pnpm lint &
pnpm typecheck &
pnpm test &
wait
- name: 🧪 QA Checks
run: pnpm lint && pnpm typecheck && pnpm test

View File

@@ -136,7 +136,7 @@ jobs:
# ──────────────────────────────────────────────────────────────────────────────
build:
name: 🏗️ Build
needs: prepare
needs: [prepare, qa]
if: needs.prepare.outputs.target != 'skip'
runs-on: docker
container: