From d18aa67c0574e240ac6c394f07588d2fe56f4f24 Mon Sep 17 00:00:00 2001 From: Piotr Grabowski Date: Wed, 11 Sep 2024 21:21:46 +0200 Subject: [PATCH] Run E2E tests as a required check in merge queue (#753) 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. --- .github/workflows/e2e-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 454aefc23..13aca05bd 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -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: