From d8734c9ae3048e8892a8a89424a8adda66e11c6a Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Thu, 11 Sep 2025 11:16:47 -0500 Subject: [PATCH] Run e2e tests when pusing to main and bump actions to the latest --- .github/workflows/test-e2e.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 65f3a3e..39a0384 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -1,6 +1,8 @@ name: Test E2E on: + push: + branches: [main] pull_request: types: [opened, synchronize, reopened] branches: ['**'] # run for PRs targeting any branch (main and others) @@ -14,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod