fix(ci): Strict turbo inputs and skip slow post-deploy QA for tags
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 9s
Build & Deploy / 🧪 QA (push) Successful in 3m26s
Build & Deploy / 🏗️ Build (push) Successful in 4m5s
Build & Deploy / 🚀 Deploy (push) Successful in 36s
Build & Deploy / 🧪 Smoke Test (push) Successful in 52s
Build & Deploy / 🛡️ Quality Gates (push) Successful in 1m42s
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / ♿ WCAG (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled

This commit is contained in:
2026-02-23 02:44:58 +01:00
parent f4fdb89ba4
commit bcf2d60da6
2 changed files with 36 additions and 4 deletions

View File

@@ -394,7 +394,7 @@ jobs:
name: 🧪 Smoke Test
needs: [prepare, deploy]
continue-on-error: true
if: needs.deploy.result == 'success'
if: needs.deploy.result == 'success' && github.ref_type != 'tag'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -427,7 +427,7 @@ jobs:
name: ⚡ Lighthouse
needs: [prepare, deploy]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip'
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -502,7 +502,7 @@ jobs:
name: ♿ WCAG
needs: [prepare, deploy, smoke_test]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip'
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -584,7 +584,7 @@ jobs:
name: 🛡️ Quality Gates
needs: [prepare, deploy, smoke_test]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip'
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest