diff --git a/.github/workflows/orca.yml b/.github/workflows/orca.yml index 8c246123..0b91ee1f 100644 --- a/.github/workflows/orca.yml +++ b/.github/workflows/orca.yml @@ -115,7 +115,20 @@ jobs: php-version: ${{ matrix.php-version }} coverage: xdebug -# Commenting out to use the latest chrome and chromedriver versions. + - name: Setup Chrome + uses: browser-actions/setup-chrome@v1.7.2 + id: setup-chrome + with: + chrome-version: 119 + install-chromedriver: true + + - run: | + CHROME_BIN="${{ steps.setup-chrome.outputs.chrome-path }}" + sudo ln -sf "$CHROME_BIN" /usr/bin/ + CHROMEDRIVER_BIN="${{ steps.setup-chrome.outputs.chromedriver-path }}" + sudo ln -sf "$CHROMEDRIVER_BIN" /usr/bin/ + +# Commenting out to use the latest chrome and chromedriver versions. # - name: Install google-chrome-stable # run: | # # Remove existing google chrome and install required version.