mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 11:25:21 -08:00
Compare commits
10 Commits
v2
...
feature/ci
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
731829c27b | ||
|
|
f61aefcd0a | ||
|
|
1e50f0d29a | ||
|
|
3bb403de5c | ||
|
|
f6168414cd | ||
|
|
6614295132 | ||
|
|
e2d72d85c3 | ||
|
|
532f722cdf | ||
|
|
487a312548 | ||
|
|
b6a806a5fb |
46
.github/workflows/test-all-reports.yml
vendored
Normal file
46
.github/workflows/test-all-reports.yml
vendored
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
name: Run all reports
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore: [ '**.md' ]
|
||||||
|
push:
|
||||||
|
paths-ignore: [ '**.md' ]
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
reports:
|
||||||
|
name: Run
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx, java-junit, flutter-json ]
|
||||||
|
include:
|
||||||
|
- reporter: jest-junit
|
||||||
|
path: ./__tests__/fixtures/jest-junit.xml
|
||||||
|
- reporter: mocha-json
|
||||||
|
path: ./__tests__/fixtures/mocha-json.json
|
||||||
|
- reporter: swift-xunit
|
||||||
|
path: ./__tests__/fixtures/swift-xunit.xml
|
||||||
|
- reporter: dart-json
|
||||||
|
path: ./__tests__/fixtures/dart-json.json
|
||||||
|
- reporter: dotnet-trx
|
||||||
|
path: ./__tests__/fixtures/dotnet-trx.trx
|
||||||
|
- reporter: java-junit
|
||||||
|
path: ./__tests__/fixtures/external/java/pulsar-test-report.xml
|
||||||
|
- reporter: flutter-json
|
||||||
|
path: ./__tests__/fixtures/external/flutter/provider-test-results.json
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.reporter }} report
|
||||||
|
path: ${{ matrix.path }}
|
||||||
|
reporter: ${{ matrix.reporter }}
|
||||||
|
fail-on-error: false
|
||||||
Reference in New Issue
Block a user