Skip to content

Commit

Permalink
ci(editor): Add final checking step after PR E2E run (no-changelog) (#…
Browse files Browse the repository at this point in the history
…5914)

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

* Fix spacing

* Fix markdown
  • Loading branch information
OlegIvaniv authored Apr 6, 2023
1 parent dba5be3 commit b1e1c5b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/e2e-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit b1e1c5b

Please sign in to comment.