ci: remove unnecessary port mappings from workflow config
Some checks failed
Playwright Tests / test (pull_request) Failing after 2m58s
Some checks failed
Playwright Tests / test (pull_request) Failing after 2m58s
This commit is contained in:
parent
03a8586c38
commit
8a3fb2aaf0
1 changed files with 3 additions and 4 deletions
7
.github/workflows/playwright.yml
vendored
7
.github/workflows/playwright.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue