Skip to content

test workflow update 6 #6

test workflow update 6

test workflow update 6 #6

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: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install dependencies
run: npm install
working-directory: e2e-tests
- name: Run Cypress tests
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: e2e-tests/cypress/screenshots
if-no-files-found: ignore
- name: Upload Cypress videos
uses: actions/upload-artifact@v3
with:
name: cypress-videos
path: e2e-tests/cypress/videos
if-no-files-found: ignore