Skip to content

Commit

Permalink
ci (e2e) :add empty workflow for e2e testing
Browse files Browse the repository at this point in the history
  • Loading branch information
narcis96 authored Mar 4, 2024
1 parent ac795b4 commit 704fda6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 704fda6

Please sign in to comment.