ci(editor): Add final checking step after PR E2E run (no-changelog) (#5914)

* ci(editor): Add final checking step after PR E2E run (no-changelog)

* Fix spacing

* Fix markdown
This commit is contained in:
OlegIvaniv 2023-04-06 10:15:26 +02:00 committed by GitHub
parent dba5be37ae
commit b1e1c5b306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,3 +32,26 @@ jobs:
run-env: base:16.18.1
secrets:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
post-e2e-tests:
runs-on: ubuntu-latest
name: E2E [Electron/Node 16] - Checks
needs: [run-e2e-tests]
steps:
- name: E2E success comment
if: success()
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: 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 }}