ci: remove unnecessary port mappings from workflow config
Some checks failed
Playwright Tests / test (pull_request) Failing after 2m58s

This commit is contained in:
Jan Gleytenhoover 2025-01-17 10:07:24 +01:00
parent 03a8586c38
commit 8a3fb2aaf0
Signed by: jank
GPG key ID: 50620ADD22CD330B

View file

@ -18,8 +18,6 @@ jobs:
POSTGRES_DB: employee_db POSTGRES_DB: employee_db
POSTGRES_USER: employee POSTGRES_USER: employee
POSTGRES_PASSWORD: secret POSTGRES_PASSWORD: secret
ports:
- "5432:5432"
employee: employee:
container_name: employee container_name: employee
@ -29,8 +27,6 @@ jobs:
spring.datasource.url: jdbc:postgresql://postgres-employee:5432/employee_db spring.datasource.url: jdbc:postgresql://postgres-employee:5432/employee_db
spring.datasource.username: employee spring.datasource.username: employee
spring.datasource.password: secret spring.datasource.password: secret
ports:
- "8089:8089"
depends_on: depends_on:
- postgres-employee - postgres-employee
@ -38,6 +34,9 @@ jobs:
# Checkout the repository # Checkout the repository
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Debug
run: docker ps
# Set up Node.js # Set up Node.js
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with: