From 3c63f159b04f0a15f9a5e226ba0cea45789d50db Mon Sep 17 00:00:00 2001 From: ismay Date: Thu, 3 Oct 2024 09:21:51 +0200 Subject: [PATCH] ci: add e2e --- .github/workflows/test-and-release.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index f9b8cf80d..4505389fa 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -14,8 +14,15 @@ jobs: uses: dhis2/workflows-platform/.github/workflows/lint.yml@v1 test: uses: dhis2/workflows-platform/.github/workflows/test.yml@v1 + e2e: + uses: dhis2/workflows-platform/.github/workflows/legacy-e2e.yml@v1 + # Skips forks and dependabot PRs + if: '!github.event.push.repository.fork' + secrets: inherit + with: + api_version: 41 release: - needs: [lint-commits, lint, test] + needs: [lint-commits, lint, test, e2e] uses: dhis2/workflows-platform/.github/workflows/release.yml@v1 # Skips forks and dependabot PRs if: '!github.event.push.repository.fork'