ci: streamline and unify pipelines with parallelized QA and optimized Docker builds

This commit is contained in:
2026-02-10 21:50:23 +01:00
parent c5a1817420
commit 434da7eef9
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