Skip to content

FRS-5 Testing

FRS-5 Testing #18

Workflow file for this run

name: End-to-end tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
cypress-run:
runs-on: ubuntu-latest
name: Run Cypress E2E tests
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: Install Node.js dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.npm
${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Run Cypress Tests
run: npm run cypress:ci
- name: Upload Photo Artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
- name: Upload Video Artifacts
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-videos
path: cypress/videos