PR E2E #3989
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR E2E | |
on: | |
pull_request_review: | |
types: [submitted] | |
branch: | |
- 'master' | |
jobs: | |
run-e2e-tests: | |
name: E2E [Electron/Node 18] | |
uses: ./.github/workflows/e2e-reusable.yml | |
if: ${{ github.event.review.state == 'approved' && !contains(github.event.pull_request.labels.*.name, 'community') }} | |
with: | |
branch: ${{ github.event.pull_request.head.ref }} | |
user: ${{ github.event.pull_request.user.login || 'PR User' }} | |
spec: 'e2e/*' | |
secrets: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
post-e2e-tests: | |
runs-on: ubuntu-latest | |
name: E2E [Electron/Node 18] - Checks | |
needs: [run-e2e-tests] | |
if: always() | |
steps: | |
- name: E2E success comment | |
if: ${{!contains(github.event.pull_request.labels.*.name, 'community') && needs.run-e2e-tests.outputs.tests_passed == 'true' }} | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
:white_check_mark: All Cypress E2E specs passed | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: E2E fail comment | |
if: needs.run-e2e-tests.result == 'failure' | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
:warning: Some Cypress E2E specs are failing, please fix them before merging | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Success job if community PR | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'community') }} | |
run: exit 0 | |
- name: Fail job if run-e2e-tests failed | |
if: ${{ (github.event.review.state != 'approved' && github.event.review.state != 'commented') || needs.run-e2e-tests.result == 'failure' }} | |
run: exit 1 |