Skip to content

Commit 3481761

Browse files
committed
Debug driver test on CI
1 parent 4b355f5 commit 3481761

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/CI.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,16 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
php: ['8.2', '8.3', '8.4']
53-
browser: ['chromium', 'firefox', 'webkit']
52+
php: [
53+
#'8.2',
54+
'8.3',
55+
'8.4'
56+
]
57+
browser: [
58+
'chromium',
59+
# 'firefox',
60+
# 'webkit'
61+
]
5462

5563
env:
5664
PLAYWRIGHT_BROWSER: ${{ matrix.browser }}
@@ -64,7 +72,7 @@ jobs:
6472
with:
6573
php-version: ${{ matrix.php }}
6674
coverage: none
67-
tools: composer, phpunit
75+
tools: composer
6876

6977
- name: Composer cache
7078
uses: actions/cache@v4
@@ -94,6 +102,10 @@ jobs:
94102
- name: Start Mink test server
95103
run: vendor/bin/mink-test-server > mink-test-server.log 2>&1 &
96104
shell: bash
105+
106+
- name: Output server log (debug)
107+
run: tail -n +50 mink-test-server.log || true
108+
if: failure()
97109

98110
- name: Wait for Mink test server to be ready
99111
run: |

0 commit comments

Comments
 (0)