diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 475246ce..9bd87bb4 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x, 22.x] + node-version: [20.x, 22.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -27,3 +27,8 @@ jobs: cache: 'npm' - run: npm ci - run: npm test + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: success() || failure() # always run even if the previous step fails + with: + report_paths: '**/test-results.xml'