diff --git a/.github/actions/create-test-report/action.yml b/.github/actions/create-test-report/action.yml index 06d7bca7..7aa361f4 100644 --- a/.github/actions/create-test-report/action.yml +++ b/.github/actions/create-test-report/action.yml @@ -47,10 +47,11 @@ runs: mochawesome.html - name: Create test report - uses: phoenix-actions/test-reporting@v15 + uses: hudl/GHA-test-reporter@v2.2.0 if: success() with: name: ${{ inputs.name }}-${{ inputs.os }}-node-${{ inputs.node }} + show-html-notice: 'true' fail-on-error: true - path: mochawesome.json # Path to test results - reporter: mochawesome-json + path: test-results.xml # Path to test results + reporter: jest-junit diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c5a25d7..27893cf4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,7 +77,8 @@ jobs: matrix: os: [macos-13, macos-14, ubuntu-22.04, windows-2022] # os: [macos-14, windows-2022] - node: [18, 20, 22, 23] + # node: [18, 20, 22, 23] + node: [22] steps: