From 704fda64f9c7698147db2f880491c2538859e248 Mon Sep 17 00:00:00 2001 From: narcis96 <7252787+narcis96@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:27:21 +0200 Subject: [PATCH] ci (e2e) :add empty workflow for e2e testing --- .github/workflows/e2e.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/e2e.yaml diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml new file mode 100644 index 000000000..23c12d3ab --- /dev/null +++ b/.github/workflows/e2e.yaml @@ -0,0 +1,26 @@ +name: E2E + +on: + workflow_dispatch: + inputs: + debug_enabled: + type: boolean + description: Run the build with upterm debugging enabled + (https://github.com/lhotari/action-upterm/) + required: false + default: false + pull_request: + branches: + - main + +concurrency: + group: e2e-${{ github.head_ref || github.ref_name }} + cancel-in-progress: true + +jobs: + e2e-test-empty: + runs-on: ubuntu-latest + steps: + - name: Echo hello + run: | + echo "hello"