feat(ci) removing artifact input

This commit is contained in:
Julien Catania 2024-01-15 16:57:20 +01:00
parent 532f722cdf
commit e2d72d85c3

View file

@ -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 }}