Skip to content

Test Report

Test Report #3

name: 'Test Report'
on:
workflow_run:
workflows: ['CI Test Runner']
types:
- completed
permissions:
contents: read
actions: read
checks: write
jobs:
report:
runs-on: ubuntu-latest
steps:
- name: Generate test report
uses: dorny/test-reporter@v1
id: reporter
with:
artifact: test-results
name: Jest Test Report
path: '*.xml'
reporter: jest-junit
- name: Show the test report URL
run: echo ${{ steps.reporter.outputs.url_html }}