Skip to content

Feature/allow duplicates #90

Feature/allow duplicates

Feature/allow duplicates #90

Workflow file for this run

name: rAPId Integration Tests
on:
workflow_dispatch:
pull_request:
types:
- opened
jobs:
run-ui-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install packages
run: |
cd ui
npm install
- name: Install playwright browsers
run: |
cd ui
npx playwright install-deps
npm install @playwright/test -D
npx playwright install
- name: Run playwright tests
run: make ui/test-e2e
env:
E2E_DOMAIN_NAME: ${{ secrets.E2E_DOMAIN_NAME }}
E2E_RESOURCE_PREFIX: ${{ secrets.E2E_RESOURCE_PREFIX }}
AWS_REGION: ${{ secrets.AWS_REGION }}