#1165 added a GitHub CI workflow for running E2E tests, however, these tests seem to only execute on main after merging. This means that the CI might pass on the PR, but fail after merging on main, which is the case on the latest commit.
There's a section that enables running the tests if there's a "/run e2e" or "/test e2e" comment present:
if: |
github.event_name != 'issue_comment' || (
github.event.issue.pull_request &&
(contains(github.event.comment.body, '/test e2e') || contains(github.event.comment.body, '/run e2e')) &&
(github.event.comment.author_association == 'OWNER' ||
github.event.comment.author_association == 'MEMBER' ||
github.event.comment.author_association == 'COLLABORATOR')
)
In #1341, I tried triggering the e2e tests via commenting, but it didn't work.
#1165 added a GitHub CI workflow for running E2E tests, however, these tests seem to only execute on
mainafter merging. This means that the CI might pass on the PR, but fail after merging on main, which is the case on the latest commit.There's a section that enables running the tests if there's a "/run e2e" or "/test e2e" comment present:
In #1341, I tried triggering the e2e tests via commenting, but it didn't work.