diff --git a/.github/workflows/test-report.yml b/.github/workflows/test-report.yml deleted file mode 100644 index 3462126..0000000 --- a/.github/workflows/test-report.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Test Report - -on: - workflow_run: - workflows: ['CI'] - types: - - completed - -permissions: - actions: read - checks: write - -jobs: - report: - name: Workflow test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Create test report - uses: ./ - with: - artifact: test-results - name: Workflow Report - path: '*.xml' - reporter: jest-junit - - - name: Create mochawesome report - uses: ./ - if: success() || failure() - with: - name: Mochawesome Tests - path: __tests__/fixtures/mochawesome-json.json - reporter: mochawesome-json - fail-on-error: false