From cd602c8403d8b9e99736c3215467cdfacbe59f6d Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 16 Dec 2024 18:20:51 -0300 Subject: [PATCH] ci: Improve TypeScript test workflow logging (#5260) * ci: Update TypeScript test workflow to improve output logging - Enhanced logging in the TypeScript test workflow by modifying the output of the changes filter to use JSON formatting for better readability. - Added logging for the release input to provide clearer context during the build process. * ci: Enable Langflow deactivated tracing in TypeScript test workflow - Added LANGFLOW_DEACTIVE_TRACING environment variable set to "true" in the TypeScript test workflow configuration to enhance debugging capabilities. --- .github/workflows/typescript_test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript_test.yml b/.github/workflows/typescript_test.yml index db242b337..528e6d06b 100644 --- a/.github/workflows/typescript_test.yml +++ b/.github/workflows/typescript_test.yml @@ -80,11 +80,11 @@ jobs: id: set-matrix run: | # Start with input suites if provided, otherwise empty array - echo "Changes filter output: ${{ steps.filter.outputs }}" + echo "Changes filter output: $(echo '${{ toJSON(steps.filter.outputs) }}')" SUITES='${{ inputs.suites }}' echo "Initial suites: $SUITES" TEST_GREP="" - + echo "Inputs Release: ${{ inputs.release }}" RELEASE="${{ inputs.release || 'false' }}" echo "Release build: $RELEASE" @@ -229,6 +229,7 @@ jobs: ASTRA_DB_API_ENDPOINT: "${{ secrets.ASTRA_DB_API_ENDPOINT }}" ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}" TAVILY_API_KEY: "${{ secrets.TAVILY_API_KEY }}" + LANGFLOW_DEACTIVE_TRACING: "true" UV_CACHE_DIR: /tmp/.uv-cache outputs: failed: ${{ steps.check-failure.outputs.failed }}