Skip to content

Adding system tests

Adding system tests #2

Workflow file for this run

name: Run system tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build compose
run: docker-compose up -d
- name: ⚙️ Install dependencies
uses: ./.github/workflows/install-pnpm
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30