feat: implement failfast logic in pipelines
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🧪 QA (push) Failing after 1m15s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s

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

View File

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

View File

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