Skip to content

test workflow update 1 #2

test workflow update 1

test workflow update 1 #2

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
with:
working-directory: e2e-tests
- 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