Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
matsuo committed Jun 15, 2024
2 parents f64632d + 190334f commit 0bbafa6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/e2e-test-chrome.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
operating-system: [ 'ubuntu-latest' ]
# operating-system: [ubuntu-latest, macos-latest, windows-latest]
php-versions: ['7.4','8.0','8.1','8.2','8.3']
php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
name: End-to-End Test for Chrome on ${{ matrix.operating-system }} with PHP ${{ matrix.php-versions }}
services:
mysql: # https://qiita.com/sayama0402/items/e863ffb597ce87bf2e2f
image: mysql:5.7
image: mysql:8.0
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: EeLeBui7%Eesa4oto
options: --health-cmd "mysqladmin ping -h localhost" --health-interval 20s --health-timeout 10s --health-retries 10

postgres:
image: postgres:12
image: postgres:16
ports:
- 5432:5432
env:
Expand All @@ -38,7 +38,7 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v4 # v4.1.1
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
Expand Down Expand Up @@ -92,10 +92,12 @@ jobs:
- name: Setup Headless Chrome
uses: browser-actions/setup-chromium@latest
with:
chrome-version: latest
chrome-version: 126
install-chromedriver: true
#chrome-version: latest

- name: Setup WebdriverIO
run: cd spec/run;npm update
run: cd spec/run; npm install

- name: Boot the web server with php server mode
run: |
Expand Down

0 comments on commit 0bbafa6

Please sign in to comment.