Add log groups to run tests (#9275)

This commit is contained in:
Tommaso Sciortino
2025-09-24 09:43:45 -07:00
committed by GitHub
parent b540137820
commit 1753c71bfa

View File

@@ -18,8 +18,16 @@ runs:
GEMINI_API_KEY: '${{ inputs.gemini_api_key }}'
working-directory: '${{ inputs.working-directory }}'
run: |-
echo "::group::Build"
npm run build
echo "::endgroup::"
echo "::group::Unit Tests"
npm run test:ci
echo "::endgroup::"
echo "::group::Integration Tests (no sandbox)"
npm run test:integration:sandbox:none
echo "::endgroup::"
echo "::group::Integration Tests (docker sandbox)"
npm run test:integration:sandbox:docker
echo "::endgroup::"
shell: 'bash'