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:
pull_request:
@ -13,6 +13,9 @@ on:
jobs:
reports:
name: Run
runs-on: ubuntu-latest
strategy:
matrix:
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx ]
@ -27,14 +30,12 @@ jobs:
path: ./__tests__/fixtures/dart-json.json
- reporter: dotnet-trx
path: ./__tests__/fixtures/dotnet-trx.xml
name: Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run : ls -all ./__tests__/fixtures/
- uses: ./
with:
artifact: ${{ matrix.reporter }}
name: ${{ matrix.reporter }}
path: ${{ matrix.path }}
reporter: ${{ matrix.reporter }}