F2.3 CI: conservar diagnóstico de TypeScript

This commit is contained in:
2026-09-07 08:35:22 -03:00
parent d765f7d65e
commit 2143b9454f
+9 -1
View File
@@ -31,7 +31,15 @@ jobs:
- name: Install
run: npm ci
- name: Typecheck
run: npm run typecheck
run: npm run typecheck 2>&1 | tee typecheck.log
- name: Upload TypeScript diagnostic
if: always()
uses: actions/upload-artifact@v4
with:
name: f2-3-typecheck-diagnostic
path: api-v3/typecheck.log
if-no-files-found: warn
retention-days: 3
- name: Tests
run: npm test
- name: Build