debug: add TypeScript config inspection to CI
Some checks failed
CI/CD Pipeline / Integration Tests (push) Blocked by required conditions
CI/CD Pipeline / Deployment Summary (push) Blocked by required conditions
CI/CD Pipeline / Backend - Build, Test & Push (push) Failing after 1m3s
CI/CD Pipeline / Frontend - Build, Test & Push (push) Has been cancelled

This commit is contained in:
David 2025-11-17 01:47:43 +01:00
parent 8b20a7e548
commit 62cad30fc2

View File

@ -32,6 +32,20 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm install --legacy-peer-deps run: npm install --legacy-peer-deps
- name: Debug - Check TypeScript config
run: |
echo "=== TypeScript Config ==="
cat tsconfig.json
echo ""
echo "=== TypeScript Build Config ==="
cat tsconfig.build.json
echo ""
echo "=== NestJS CLI Config ==="
cat nest-cli.json
echo ""
echo "=== Checking if domain files exist ==="
ls -la src/domain/ports/out/ | head -10
- name: Lint code - name: Lint code
run: npm run lint run: npm run lint