Skip to content

fetch mapping data when there are enrollments to process #32

fetch mapping data when there are enrollments to process

fetch mapping data when there are enrollments to process #32

Workflow file for this run

name: End-to-End Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- run: docker compose -f esignet-docker-compose.yml -f docker-compose.yml -f tests/docker-compose.test.yml up --build -d
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: yarn test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30