Skip to content

Commit

Permalink
added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
madhu-355 committed Jul 29, 2024
1 parent 86dfb04 commit 6580aef
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/e2e-cypress-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: End to End Cypress Test

on:
push:
branches:
- test/cypress
paths:
- "frontend/**"

jobs:
cypress-run:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Cypress.io
uses: cypress-io/github-action@v6.5.0

- name: Upload Cypress screenshots
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
if-no-files-found: ignore

- name: Upload Cypress videos
uses: actions/upload-artifact@v3
with:
name: cypress-videos
path: cypress/videos
if-no-files-found: ignore

0 comments on commit 6580aef

Please sign in to comment.