ci: streamline and unify pipelines with parallelized QA and optimized Docker builds
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🏗️ Build (push) Failing after 1m1s
Build & Deploy / 🧪 QA (push) Successful in 1m8s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-02-10 21:50:23 +01:00
parent 33a0877a6d
commit 2da182ec47
3 changed files with 128 additions and 481 deletions

View File

@@ -32,11 +32,9 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.REGISTRY_PASS }}
- name: 🔍 Lint
run: pnpm lint
- name: 🏗️ Typecheck
run: pnpm typecheck
- name: 🧪 Test
run: pnpm test
- name: 🧪 Parallel Checks
run: |
pnpm lint &
pnpm typecheck &
pnpm test &
wait