Skip to content

Commit

Permalink
Create e2e-pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kluge7 authored Apr 7, 2024
1 parent 3f9d0e7 commit 75cc22f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/e2e-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: E2E Tests

on:
workflow_dispatch:
inputs:
PIPELINE_TYPE:
description: 'Type of the pipeline'
required: true
default: 'multi-project-pipeline'

jobs:
e2e-tests:
runs-on: ubuntu-latest
if: github.event.inputs.PIPELINE_TYPE == 'multi-project-pipeline'
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Install dependencies
run: npm install

- name: Run Cypress E2E Tests
run: npm run test:e2e:ci

0 comments on commit 75cc22f

Please sign in to comment.