Skip to content

Test Report

Test Report #22

Workflow file for this run

name: Test Report
on:
workflow_run:
workflows: [ develop, master ]
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
debug:
runs-on: [ self-hosted, windows ]
name: "Create test report"
steps:
- name: "Create test report (Debug)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Debug
name: Test Report Debug
path: '*.xml'
reporter: jest-junit
- name: "Create test report (Release)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Release
name: Test Report Release
path: '*.xml'
reporter: jest-junit
- name: "Create test report (Dist)"
uses: dorny/test-reporter@v1
with:
artifact: TestOutput-Dist
name: Test Report Dist
path: '*.xml'
reporter: jest-junit