Skip to content

Commit

Permalink
Add chromium in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
saidatom committed Aug 5, 2024
1 parent 81c3861 commit db92e12
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ jobs:
strategy:
matrix:
php: [ '7.4', '8.0', '8.1', '8.2' ]
browser: [ 'firefox', 'chrome' ]
browser: [ 'firefox', 'chrome']
selenium: [ '2.53.1', '3', '4' ]
include:
- php: '7.4'
browser: 'edge'
selenium: '4'
- php: [ '8.0', '8.1', '8.2' ]
browser: 'chromium'
selenium: '4'
fail-fast: false

steps:
Expand Down Expand Up @@ -79,6 +82,9 @@ jobs:
WEB_FIXTURES_BROWSER: ${{ matrix.browser }}
DRIVER_MACHINE_BASE_PATH: /fixtures/
run: |
if [ "${{ matrix.browser }}" = "chromium" ]; then
WEB_FIXTURES_BROWSER="chrome"
fi
vendor/bin/phpunit -v --coverage-clover=coverage.xml --colors=always --testdox
- name: Upload coverage
Expand Down

0 comments on commit db92e12

Please sign in to comment.