Update routing library from react-router-dom to react-router #1494
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright Visitor Tests | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:8.1 | |
ports: | |
- '3306:3306' | |
options: >- | |
--health-cmd="mysqladmin ping --silent" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
env: | |
MYSQL_ROOT_PASSWORD: rootpass | |
MYSQL_DATABASE: digital | |
MYSQL_PASSWORD: password | |
volumes: | |
- ./my.cnf:/etc/mysql/conf.d/my.cnf | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Create .env file | |
run: cp .env.e2e .env | |
- name: Install dependencies | |
run: npm install -g pnpm && pnpm install | |
- name: install Playwright browsers | |
run: pnpm exec playwright install | |
- name: Build Frontend App | |
run: pnpm build:e2e | |
- name: Run Playwright tests | |
run: pnpm exec playwright test visitor.spec.ts | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |