Manuel Bustillo 85f918b397
Some checks failed
Check usage of free licenses / build-static-assets (pull_request) Successful in 33s
Add copyright notice / copyright_notice (pull_request) Successful in 47s
Playwright Tests / test (pull_request) Failing after 5m38s
Build Nginx-based docker image / build-static-assets (push) Successful in 6m4s
Fix the waiting URL
2025-06-08 11:42:59 +02:00

33 lines
1000 B
YAML

name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Build the service that will be tested
run: pnpm run build
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run the service that will be tested
run: HOSTNAME=localhost node .next/standalone/server.js &
- name: Wait for the service to be ready
run: npx wait-on http://localhost:3000/default/dashboard/guests --timeout 30000
- name: Run Playwright tests
run: DEBUG=pw:api pnpm exec playwright test