Test Report #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Report | |
on: | |
workflow_run: | |
workflows: ['Build and Test'] | |
types: | |
- completed | |
jobs: | |
unit-test-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish Unit Test Report | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: unit-test-results | |
name: Unit Tests | |
path: '*.trx' | |
reporter: dotnet-trx | |
integration-test-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish Integration Test Report | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: integration-test-results | |
name: Integration Tests | |
path: '*.trx' | |
reporter: dotnet-trx | |
e2e-test-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish e2e Test Report | |
uses: dorny/test-reporter@v1 | |
with: | |
artifact: e2e-test-results | |
name: e2e Tests | |
path: '*.trx' | |
reporter: dotnet-trx |