From e2d72d85c3d1fc825258b8727ae2b54d6d3b7e12 Mon Sep 17 00:00:00 2001 From: Julien Catania Date: Mon, 15 Jan 2024 16:57:20 +0100 Subject: [PATCH] feat(ci) removing artifact input --- .github/workflows/test-all-reports.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-all-reports.yml b/.github/workflows/test-all-reports.yml index ad931bf..5ebdac1 100644 --- a/.github/workflows/test-all-reports.yml +++ b/.github/workflows/test-all-reports.yml @@ -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 }}