From b06a9067f76aff1999af2fa76649b080764f319a Mon Sep 17 00:00:00 2001 From: Justin Robertson Date: Thu, 10 Oct 2024 17:31:38 -0500 Subject: [PATCH] Fix Action --- .github/workflows/coding-standard.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coding-standard.yml b/.github/workflows/coding-standard.yml index efe0c6a..d9a9560 100644 --- a/.github/workflows/coding-standard.yml +++ b/.github/workflows/coding-standard.yml @@ -27,8 +27,9 @@ jobs: vendor/bin/phpcs --standard=Magento2 --report=checkstyle --report-file=/var/www/html/src/app/code/Auctane/report.xml --runtime-set ignore_warnings_on_exit 1 /var/www/html/src/app/code/Auctane # Step 3: Publish Test Report - - name: Publish Test Report - uses: mikepenz/action-junit-report@v4 - if: success() || failure() # always run even if the previous step fails - with: - report_paths: 'report.xml' \ No newline at end of file + - name: Publish Test Results + uses: EnricoMi/publish-unit-test-result-action@v2 + if: always() + with: + files: | + report.xml \ No newline at end of file