mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 22:37:09 +01:00
feat(ci) removing artifact input
This commit is contained in:
parent
532f722cdf
commit
e2d72d85c3
1 changed files with 5 additions and 4 deletions
9
.github/workflows/test-all-reports.yml
vendored
9
.github/workflows/test-all-reports.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Run report
|
name: Run all reports
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
@ -13,6 +13,9 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
reports:
|
reports:
|
||||||
|
name: Run
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx ]
|
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx ]
|
||||||
|
|
@ -27,14 +30,12 @@ jobs:
|
||||||
path: ./__tests__/fixtures/dart-json.json
|
path: ./__tests__/fixtures/dart-json.json
|
||||||
- reporter: dotnet-trx
|
- reporter: dotnet-trx
|
||||||
path: ./__tests__/fixtures/dotnet-trx.xml
|
path: ./__tests__/fixtures/dotnet-trx.xml
|
||||||
name: Run
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run : ls -all ./__tests__/fixtures/
|
- run : ls -all ./__tests__/fixtures/
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
artifact: ${{ matrix.reporter }}
|
|
||||||
name: ${{ matrix.reporter }}
|
name: ${{ matrix.reporter }}
|
||||||
path: ${{ matrix.path }}
|
path: ${{ matrix.path }}
|
||||||
reporter: ${{ matrix.reporter }}
|
reporter: ${{ matrix.reporter }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue