diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index cf02175..f0c3812 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -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: