tree: 65ee91c28beeec291d53ad059281c4ed3642004c [path history] [tgz]
  1. __tests__/
  2. dist/
  3. src/
  4. test_results/
  5. .eslintignore
  6. .eslintrc.json
  7. .gitattributes
  8. .gitignore
  9. .prettierignore
  10. .prettierrc.json
  11. action.yml
  12. jest.config.js
  13. LICENSE
  14. package-lock.json
  15. package.json
  16. README.md
  17. SECURITY.md
  18. tsconfig.json
action-junit-report/README.md


What's included 🚀

  • Flexible JUnit parser with wide support
  • Supports nested test suites
  • Blazingly fast execution
  • Lighweight
  • Rich build log output

This action processes JUnit XML test reports on pull requests and shows the result as a PR check with summary and annotations.

Based on action for Surefire Reports by ScaCap

Setup

Configure the workflow

name: build
on:
  pull_request:

jobs:
  build:
    name: Build and Run Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v1
      - name: Build and Run Tests
        run: # execute your tests generating test results
      - name: Publish Test Report
        uses: mikepenz/action-junit-report@v3
        if: always() # always run even if the previous step fails
        with:
          report_paths: '**/build/test-results/test/TEST-*.xml'

Inputs

InputDescription
report_pathsRequired. Glob expression to junit report paths. The default is **/junit-reports/TEST-*.xml.
tokenOptional. GitHub token for creating a check run. Set to ${{ github.token }} by default.
test_files_prefixOptional. Prepends the provided prefix to test file paths within the report when annotating on GitHub.
exclude_sourcesOptional. Provide , seperated array of folders to ignore for source lookup. Defaults to: /build/,/__pycache__/
check_nameOptional. Check name to use when creating a check run. The default is JUnit Test Report.
suite_regexOptional. Regular expression for the named test suites. E.g. Test*
commitOptional. The commit SHA to update the status. This is useful when you run it with workflow_run.
fail_on_failureOptional. Fail the build in case of a test failure.
require_testsOptional. Fail if no test are found.
check_retriesOptional. If a testcase is retried, ignore the original failure.
check_title_templateOptional. Template to configure the title format. Placeholders: {{FILE_NAME}}, {{SUITE_NAME}}, {{TEST_NAME}}.
summaryOptional. Additional text to summary output
update_checkOptional. Uses an alternative API to update checks, use for cases with more than 50 annotations.
annotate_onlyOptional. Will only annotate the results on the files, won't create a check run.
transformersOptional. Array of Transformers offering the ability to adjust the fileName. Defaults to: [{"searchValue":"::","replaceValue":"/"}]
job_summaryOptional. Enables the publishing of the job summary for the results. Defaults to true. May be required to disable Enterprise Server
detailed_summaryOptional. Include table with all test results in the summary. Defaults to false.
annotate_noticeOptional. Annotate passed test results along with warning/failed ones. Defaults to true.

Action outputs

After action execution it will return the test counts as output.

# ${{steps.{CHANGELOG_STEP_ID}.outputs.total}}

A full set list of possible output values for this action.

OutputDescription
outputs.totalThe total number of test cases covered by this test-step.
outputs.passedThe number of passed test cases.
outputs.skippedThe number of skipped test cases.
outputs.failedThen umber of failed test cases.

PR run permissions

For security reasons, the github token used for pull_request workflows is maxed at read-only. If you want to post checks to a PR from an external repository, you will need to use a separate workflow which has a read/write token, or use a PAT with elevated permissions.

name: build
on:
  pull_request:

jobs:
  build:
    name: Build and Run Tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout Code
        uses: actions/checkout@v3
      - name: Build and Run Tests
        run: # execute your tests generating test results
      - name: Upload Test Report
        uses: actions/upload-artifact@v3
        if: always() # always run even if the previous step fails
        with:
          name: junit-test-results
          path: '**/build/test-results/test/TEST-*.xml'
          retention-days: 1

---
name: report
on:
  workflow_run:
    workflows: [build]
    types: [completed]
    
permissions:
  checks: write

jobs:
  checks:
    runs-on: ubuntu-latest
    steps:
      - name: Download Test Report
        uses: dawidd6/action-download-artifact@v2
        with:
          name: junit-test-results
          workflow: ${{ github.event.workflow.id }}
          run_id: ${{ github.event.workflow_run.id }}
      - name: Publish Test Report
        uses: mikepenz/action-junit-report@v3
        with:
          commit: ${{github.event.workflow_run.head_sha}}
          report_paths: '**/build/test-results/test/TEST-*.xml'

This will securely post the check results from the privileged workflow onto the PR's checks report.

Sample 🖥️

Contribute 🧬

# Install the dependencies  
$ npm install

# Verify lint is happy
$ npm run lint -- --fix

# Build the typescript and package it for distribution
$ npm run build && npm run package

# Run the tests, use to debug, and test it out
$ npm test

Credits

Original idea and GitHub Actions by: https://github.com/ScaCap/action-surefire-report

Other actions

License

Copyright (C) 2022 Mike Penz

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.