Use this action to publish test results if you are using a GitHub Actions (GHA) workflow. This action supports many popular testing tools, and enables testing results from running a GHA workflow to be displayed in the Test results tab of Run details and in the Test insights analytics dashboard.
-
View the action on the GitHub marketplace.
This action is a Preview feature and is not yet fully supported by CloudBees. |
A Preview feature:
Product features and documentation are frequently updated. If you find an issue or have a suggestion, please contact CloudBees Support. |
Inputs
Input name | Data type | Required? | Description |
---|---|---|---|
|
String |
Yes |
|
|
String |
Yes |
The name of the testing tool[1]. |
|
String |
Yes |
The pattern, file, or directory path of the test report to convert. |
|
String |
No |
The CloudBees platform URL. Typically, this value is |
[1] The testing tool name must be formatted correctly, in either all lowercase, or all uppercase.
Supported testing tools
Only the testing tools listed in the table below are supported for use in this action. |
Use the given test-type
input format to specify a testing tool.
Supported tool name |
Accepted |
|
---|---|---|
lowercase |
UPPERCASE |
|
GO |
|
|
Jest |
|
|
JUnit |
|
|
MSTest |
|
|
Playwright |
|
|
ProdPerfect |
|
|
Selenium |
|
|
TestNG |
|
|
Tosca |
|
|
Usage examples
Basic example
The following is a basic example of using this action:
steps: - name: publish GHA run test results uses: cloudbees-gha-cbp/publish-test-results@v1 with: cloudbees-pat: ${{ secrets.CloudBees-platform-PAT }} test-type: junit folder-path: /example-dir/my-test-results
Full workflow and run example
The following GHA workflow example uses this action to publish test results to the CloudBees platform.
Example GHA workflow YAML file
After the run has completed, the testing results are collected and displayed in the Test results tab of Run details and in the Test insights dashboard.
