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
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:
parent
8b20a7e548
commit
62cad30fc2
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
@ -32,6 +32,20 @@ jobs:
|
||||
- name: Install dependencies
|
||||
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
|
||||
run: npm run lint
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user