Compare commits

...

10 Commits

Author SHA1 Message Date
Julien Catania
731829c27b feat(ci) add flutter-json 2024-01-15 17:26:13 +01:00
Julien Catania
f61aefcd0a feat(ci) add java-junit 2024-01-15 17:13:14 +01:00
Julien Catania
1e50f0d29a feat(ci) add java-junit 2024-01-15 17:11:20 +01:00
Julien Catania
3bb403de5c feat(ci) add report to the name 2024-01-15 17:05:17 +01:00
Julien Catania
f6168414cd feat(ci) fix dotnet trx 2024-01-15 17:04:05 +01:00
Julien Catania
6614295132 feat(ci) fail-on-error: false 2024-01-15 17:02:33 +01:00
Julien Catania
e2d72d85c3 feat(ci) removing artifact input 2024-01-15 16:57:20 +01:00
Julien Catania
532f722cdf feat(ci) adding running 5 reporters 2024-01-15 16:48:52 +01:00
Julien Catania
487a312548 feat(ci) adding running 5 reporters 2024-01-15 16:46:57 +01:00
Julien Catania
b6a806a5fb feat(ci) adding running 5 reporters 2024-01-15 16:42:11 +01:00

46
.github/workflows/test-all-reports.yml vendored Normal file
View 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