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 8a3fb2aaf0 - Show all commits

View file

@ -18,8 +18,6 @@ jobs:
POSTGRES_DB: employee_db
POSTGRES_USER: employee
POSTGRES_PASSWORD: secret
ports:
- "5432:5432"
employee:
container_name: employee
@ -29,8 +27,6 @@ jobs:
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
@ -38,6 +34,9 @@ jobs:
# Checkout the repository
- uses: actions/checkout@v4
- name: Debug
run: docker ps
# Set up Node.js
- uses: actions/setup-node@v4
with: