From 2143b9454f8b9e2c4ec8a8409eef1a556bee4ee0 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Mon, 7 Sep 2026 08:35:22 -0300 Subject: [PATCH] =?UTF-8?q?F2.3=20CI:=20conservar=20diagn=C3=B3stico=20de?= =?UTF-8?q?=20TypeScript?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/f2-3-ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/f2-3-ci.yml b/.github/workflows/f2-3-ci.yml index d88560f..d6f5b83 100644 --- a/.github/workflows/f2-3-ci.yml +++ b/.github/workflows/f2-3-ci.yml @@ -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