Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Further split services unit tests into Routers/Servers/Controllers #1399

Merged
merged 10 commits into from
Dec 17, 2024
5 changes: 3 additions & 2 deletions .github/workflows/UnitTests-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ jobs:
env:
NODE_OPTIONS: "--max_old_space_size=8192"
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
if: failure() # run only if the previous step fails
majisourav99 marked this conversation as resolved.
Show resolved Hide resolved
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
check_name: ${{ inputs.artifact_suffix }}-jdk${{ matrix.jdk }} Report
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Upload Build Artifacts
if: success() || failure()
uses: actions/upload-artifact@v4
Expand Down
Loading