action-junit-report: Automated Test Results
Get automated test results as GitHub Pull Request Checks with action-junit-report. For startup founders automating tests.
417 stars156 forksTypeScriptQuality 8/10Updated 6/1/2026100% free · open source Automates the reporting of JUnit test results as a check on GitHub Pull Requests, providing a clear overview of test success or failure
- •When you want to ensure code changes are Tested before merging into main branch
- •When you need to automate the testing and validation of Pull Requests
- •When you want to provide clear and actionable feedback to developers on test failures
- 1Create a new GitHub Actions workflow in your repository
- 2Add the action-junit-report action to your workflow file
- 3Configure the action to point to your JUnit test results file
- 4Commit and push your changes to trigger the workflow
Ready-to-paste prompt name: JUnit Report
on: [push]
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run JUnit tests
run: ./gradlew test
- name: Report JUnit results
uses: mikepenz/action-junit-report@v2Topics
actions
automation
cd
ci
github-actions
hacktoberfest
junit
test
test-automation
workflow