Skip to content

test(e2e): ✅ new test for page RESUME #241

test(e2e): ✅ new test for page RESUME

test(e2e): ✅ new test for page RESUME #241

Workflow file for this run

name: Jest Tests
on:
pull_request:
branches:
- master
jobs:
run-tests-jest:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run JEST tests
run: npm test
- name: Archive test results
uses: actions/upload-artifact@v4
if: always()
with:
name: jest-report
path: jest-report/
retention-days: 7