mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
30 lines
750 B
YAML
30 lines
750 B
YAML
name: 'Test Check Reporter'
|
|
description: |
|
|
Presents test results from popular testing frameworks as Github check run.
|
|
Supports:
|
|
- dotnet (trx logger)
|
|
- flutter (JSON output with '--machine' flag )
|
|
- jest (jest-junit reporter)
|
|
|
|
author: 'Michal Dorner <dorner.michal@gmail.com>'
|
|
inputs:
|
|
name:
|
|
description: 'Name of the check run'
|
|
required: true
|
|
path:
|
|
description: 'Path to test report'
|
|
required: true
|
|
reporter:
|
|
description: |
|
|
Format of test report. Supported options:
|
|
- dotnet-trx
|
|
- flutter-machine
|
|
- jest-junit
|
|
required: true
|
|
token:
|
|
description: 'GitHub Access Token'
|
|
required: false
|
|
default: ${{ github.token }}
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|