feat: add Playwright testing framework configuration and tests #71

Merged
jank merged 48 commits from feature/add-playwright into main 2025-01-17 13:34:52 +00:00
Showing only changes of commit 03a8586c38 - Show all commits

View file

@ -20,24 +20,19 @@ jobs:
POSTGRES_PASSWORD: secret
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U employee"]
interval: 10s
timeout: 5s
retries: 5
employee:
container_name: employee
image: berndheidemann/employee-management-service:1.1.3
# image: berndheidemann/employee-management-service_without_keycloak:1.1
env:
SPRING_DATASOURCE_URL: jdbc:postgresql://postgres-employee:5432/employee_db
SPRING_DATASOURCE_USERNAME: employee
SPRING_DATASOURCE_PASSWORD: secret
spring.datasource.url: jdbc:postgresql://postgres-employee:5432/employee_db
spring.datasource.username: employee
spring.datasource.password: secret
ports:
- "8089:8089"
depends_on:
postgres-employee:
condition: service_healthy
- postgres-employee
steps:
# Checkout the repository