Skip to content

Commit

Permalink
Run E2E tests as a required check in merge queue (#753)
Browse files Browse the repository at this point in the history
Currently we don't run E2E tests on PRs or in merge queue, just on the
main branch. That means that someone could merge a PR that ultimately
fails on the main branch. Fix that by running E2E tests in the merge
queue to catch the issue earlier.
  • Loading branch information
avelanarius authored Sep 11, 2024
1 parent 52051fa commit d18aa67
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: E2E tests

on: # @TODO TBD WHEN WE RUN
on: # @TODO should we run it on PRs?
merge_group:
push:
branches: [ "main" ]
workflow_dispatch:
Expand Down

0 comments on commit d18aa67

Please sign in to comment.