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 c29ae4ef18 - Show all commits

View file

@ -12,7 +12,6 @@ jobs:
runs-on: ubuntu-latest
services:
postgres-employee:
container_name: postgres_employee
image: postgres:13.3
env:
POSTGRES_DB: employee_db
@ -20,15 +19,12 @@ jobs:
POSTGRES_PASSWORD: secret
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
depends_on:
- postgres-employee
steps: