Show a helpful summary of test results in GitHub Actions CI/CD workflow runs
TypeScript
449
69 commits
updated May 8, 2026
Produce an easy-to-read summary of your project's test data as part of your GitHub Actions CI/CD workflow. This helps you understand at-a-glance the impact to the changes in your pull requests, and see which changes are introducing new problems.
stdoutTo set up the test summary action, just add a few lines of YAML to your GitHub Actions workflow. For example, if your test harness produces JUnit XML outputs in the test/results/ directory, and you want the output attached to the job summary, add a new step to your workflow YAML after your build and test step:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
if: always()
Update paths to match the test output file(s) that your test harness produces. You can specify glob patterns, including ** to match the pattern recursively. In addition, you can specify multiple test paths on multiple lines. For example:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: |
test-one/**/TEST-*.xml
test-two/results/results.tap
if: always()
Note the
if: always()conditional in this workflow step: you should always use this so that the test summary creation step runs even if the previous steps have failed. This allows your test step to fail -- due to failing tests -- but still produce a test summary.
You can also generate the summary in a GitHub-flavored Markdown (GFM) file, and upload it as a build artifact, add it to a pull request comment, or add it to an issue. Use the output parameter to define the target file.
For example, to create a summary and upload the markdown as a build artifact:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: test-summary.md
if: always()
This action also generates several outputs you can reference in other steps, or even from your job or workflow. These outputs are passed, failed, skipped, and total.
For example, you may want to send a summary to Slack:
- name: Test Summary
id: test_summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
if: always()
- name: Notify Slack
uses: slackapi/slack-github-action@v1.19.0
with:
payload: |-
{
"message": "${{ steps.test_summary.outputs.passed }}/${{ steps.test_summary.outputs.total }} tests passed"
}
if: always()
There are examples for setting up a GitHub Actions step with many different platforms in the examples repository.
Options are specified on the with map of the action.
paths: the paths for input files (required)
One or more file glob patterns that specify the test results files in JUnit XML or TAP format.
To specify a single file, provide it directly as a string value to the paths key. For example:
- uses: test-summary/action@v2
with:
paths: "tests/results.xml"
To specify multiple files, provide them as a multi-line string value to the paths key. For example:
- uses: test-summary/action@v2
with:
paths: |
tests-one/results.xml
tests-two/results.xml
tests-three/results.xml
You can specify files as a glob patterns, allowing you to use wildcards to match multiple files. For example, to match all files named TEST-*.xml beneath the tests folder, recursively:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: the output file to create (optional)
This is the path to the output file to populate with the test summary markdown data. For example:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: "test/results/summary.md"
If this is not specified, the output will be to the workflow summary.
This file is GitHub Flavored Markdown (GFM) and may include permitted HTML.
show: the test results to summarize in a table (optional)
This controls whether a test summary table is created or not, as well as what tests are included. It could be all, none, pass, skip, or fail. The default is fail - that is, the summary table will only show the failed tests. For example, if you wanted to show failed and skipped tests:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
show: "fail, skip"
folded: display test details in a folded details block (optional)
When enabled the details for each test result will be nested in a details blocks which can be expanded by clicking on the test name. This option can be true or false (The default).
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
folded: true
Have questions? Need help? Visit the discussion forum.
Copyright (c) 2022 Edward Thomson. Available under the MIT license.
TypeScript
93.9%
JavaScript
6.1%
Show a helpful summary of test results in GitHub Actions CI/CD workflow runs
TypeScript
449
69 commits
updated May 8, 2026
Produce an easy-to-read summary of your project's test data as part of your GitHub Actions CI/CD workflow. This helps you understand at-a-glance the impact to the changes in your pull requests, and see which changes are introducing new problems.
stdoutTo set up the test summary action, just add a few lines of YAML to your GitHub Actions workflow. For example, if your test harness produces JUnit XML outputs in the test/results/ directory, and you want the output attached to the job summary, add a new step to your workflow YAML after your build and test step:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
if: always()
Update paths to match the test output file(s) that your test harness produces. You can specify glob patterns, including ** to match the pattern recursively. In addition, you can specify multiple test paths on multiple lines. For example:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: |
test-one/**/TEST-*.xml
test-two/results/results.tap
if: always()
Note the
if: always()conditional in this workflow step: you should always use this so that the test summary creation step runs even if the previous steps have failed. This allows your test step to fail -- due to failing tests -- but still produce a test summary.
You can also generate the summary in a GitHub-flavored Markdown (GFM) file, and upload it as a build artifact, add it to a pull request comment, or add it to an issue. Use the output parameter to define the target file.
For example, to create a summary and upload the markdown as a build artifact:
- name: Test Summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: test-summary.md
if: always()
- name: Upload test summary
uses: actions/upload-artifact@v3
with:
name: test-summary
path: test-summary.md
if: always()
This action also generates several outputs you can reference in other steps, or even from your job or workflow. These outputs are passed, failed, skipped, and total.
For example, you may want to send a summary to Slack:
- name: Test Summary
id: test_summary
uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
if: always()
- name: Notify Slack
uses: slackapi/slack-github-action@v1.19.0
with:
payload: |-
{
"message": "${{ steps.test_summary.outputs.passed }}/${{ steps.test_summary.outputs.total }} tests passed"
}
if: always()
There are examples for setting up a GitHub Actions step with many different platforms in the examples repository.
Options are specified on the with map of the action.
paths: the paths for input files (required)
One or more file glob patterns that specify the test results files in JUnit XML or TAP format.
To specify a single file, provide it directly as a string value to the paths key. For example:
- uses: test-summary/action@v2
with:
paths: "tests/results.xml"
To specify multiple files, provide them as a multi-line string value to the paths key. For example:
- uses: test-summary/action@v2
with:
paths: |
tests-one/results.xml
tests-two/results.xml
tests-three/results.xml
You can specify files as a glob patterns, allowing you to use wildcards to match multiple files. For example, to match all files named TEST-*.xml beneath the tests folder, recursively:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: the output file to create (optional)
This is the path to the output file to populate with the test summary markdown data. For example:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
output: "test/results/summary.md"
If this is not specified, the output will be to the workflow summary.
This file is GitHub Flavored Markdown (GFM) and may include permitted HTML.
show: the test results to summarize in a table (optional)
This controls whether a test summary table is created or not, as well as what tests are included. It could be all, none, pass, skip, or fail. The default is fail - that is, the summary table will only show the failed tests. For example, if you wanted to show failed and skipped tests:
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
show: "fail, skip"
folded: display test details in a folded details block (optional)
When enabled the details for each test result will be nested in a details blocks which can be expanded by clicking on the test name. This option can be true or false (The default).
- uses: test-summary/action@v2
with:
paths: "test/results/**/TEST-*.xml"
folded: true
Have questions? Need help? Visit the discussion forum.
Copyright (c) 2022 Edward Thomson. Available under the MIT license.
TypeScript
93.9%
JavaScript
6.1%