chore(ci/routing): merge v1.1.7 fixes into main (routing fix & pipeline optimizations)
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 29s
Build & Deploy / 🏗️ Build (push) Successful in 2m52s
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / ♿ WCAG (push) Has been cancelled
Build & Deploy / 🛡️ Quality Gates (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🧪 QA (push) Has been cancelled

This commit is contained in:
2026-02-23 12:49:04 +01:00
parent 477a3bb8ce
commit 6a0269facc
5 changed files with 67 additions and 40 deletions

View File

@@ -45,7 +45,7 @@ jobs:
run: |
echo "Purging old build layers and dangling images..."
docker image prune -f
docker builder prune -f --filter "until=6h"
docker builder prune -f --filter "until=24h"
- name: Checkout repository
uses: actions/checkout@v4
@@ -165,6 +165,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 🔐 Registry Auth
run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
@@ -193,7 +194,7 @@ jobs:
# ──────────────────────────────────────────────────────────────────────────────
build:
name: 🏗️ Build
needs: [prepare, qa]
needs: [prepare]
if: needs.prepare.outputs.target != 'skip'
runs-on: docker
container:
@@ -392,7 +393,7 @@ jobs:
name: 🧪 Smoke Test
needs: [prepare, deploy]
continue-on-error: true
if: needs.deploy.result == 'success' && github.ref_type != 'tag'
if: needs.deploy.result == 'success' && needs.prepare.outputs.target != 'branch'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -425,7 +426,7 @@ jobs:
name: ⚡ Lighthouse
needs: [prepare, deploy]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -440,6 +441,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 🔐 Registry Auth
run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
@@ -500,7 +502,7 @@ jobs:
name: ♿ WCAG
needs: [prepare, deploy, smoke_test]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -522,6 +524,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 🔐 Registry Auth
run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
@@ -582,7 +585,7 @@ jobs:
name: 🛡️ Quality Gates
needs: [prepare, deploy, smoke_test]
continue-on-error: true
if: success() && needs.prepare.outputs.target != 'skip' && github.ref_type != 'tag'
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
runs-on: docker
container:
image: catthehacker/ubuntu:act-latest
@@ -597,6 +600,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 🔐 Registry Auth
run: |
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
@@ -630,6 +634,11 @@ jobs:
container:
image: catthehacker/ubuntu:act-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: 🔔 Gotify
run: |
STATUS="${{ needs.deploy.result }}"