test: merge all e2e reports (#16202)

This commit is contained in:
Omar López
2024-08-14 19:44:10 +00:00
committed by GitHub
parent 050abd9fab
commit 5939a99aca
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -98,5 +98,5 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: app-store-results
path: test-results
name: blob-report-app-store
path: blob-report
+2 -2
View File
@@ -85,5 +85,5 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: embed-react-results
path: test-results
name: blob-report-embed-react
path: blob-report
+2 -2
View File
@@ -91,5 +91,5 @@ jobs:
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: embed-core-results
path: test-results
name: blob-report-embed-core
path: blob-report
+4 -4
View File
@@ -189,19 +189,19 @@ jobs:
merge-reports:
name: Merge reports
if: ${{ !cancelled() }}
needs: [e2e]
if: ${{ !cancelled() && needs.check-label.outputs.run-e2e == 'true' }}
needs: [check-label, e2e]
uses: ./.github/workflows/merge-reports.yml
secrets: inherit
publish-report:
name: Publish HTML report
if: ${{ !cancelled() }}
if: ${{ !cancelled() && needs.check-label.outputs.run-e2e == 'true' }}
permissions:
contents: write
issues: write
pull-requests: write
needs: [merge-reports]
needs: [check-label, merge-reports]
uses: ./.github/workflows/publish-report.yml
secrets: inherit