Skip to content

build(deps): bump react-router-dom from 6.28.0 to 7.0.1 #1429

build(deps): bump react-router-dom from 6.28.0 to 7.0.1

build(deps): bump react-router-dom from 6.28.0 to 7.0.1 #1429

name: Playwright Selfhost 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 self-host.spec.ts
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30