We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 110c2cf commit 18f38ceCopy full SHA for 18f38ce
.github/workflows/playwright.yml
@@ -30,14 +30,20 @@ jobs:
30
echo "DB_PASSWORD=your_secure_password" >> .env
31
echo "DB_NAME=postgres" >> .env
32
echo "DB_PORT=5433" >> .env
33
- echo "DB_HOST=localhost" >> .env
+ echo "DB_HOST=127.0.0.1" >> .env
34
+ echo "POSTGRES_USER=postgres" >> .env
35
+ echo "POSTGRES_PASSWORD=your_secure_password" >> .env
36
+ echo "POSTGRES_DB=postgres" >> .env
37
38
- name: Start Services
39
run: docker compose up -d --build
40
41
- name: Wait for Services
42
run: sleep 30
43
44
+ - name: Check Running Containers
45
+ run: docker ps -a
46
+
47
- name: Run Playwright tests
48
run: npx playwright test
49
0 commit comments