Bump selenium-webdriver from 4.23.0 to 4.25.0 #712
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test chromedriver on Windows" | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
paths: | |
- '**' | |
- '!*.md' | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- '**' | |
- '!*.md' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, windows-2019 ] | |
branch: | |
# - 'master' | |
- 'now' | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: pwsh | |
run: echo "CHROMEAPP=C:\Program Files\Google\Chrome\Application\chrome.exe" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn package | |
- run: yarn test | |
# - run: | | |
# node_modules/.bin/tsc $GITHUB_WORKSPACE/__tests__/chromedriver.ts | |
# # Cannot find chromedriver when using ncc. | |
# # see https://github.com/nanasess/setup-chromedriver/issues/303 | |
# # node_modules/.bin/ncc build $GITHUB_WORKSPACE/__tests__/chromedriver.js -o $GITHUB_WORKSPACE/__tests__ | |
# # rm -rf node_modules | |
# shell: bash | |
- shell: pwsh | |
run: | | |
$chrome_fullversion = (Get-Item $Env:CHROMEAPP).VersionInfo.FileVersion | |
$chrome_majorversion = $chrome_fullversion.Split(".")[0] | |
if($chrome_majorversion -lt 115) | |
{ | |
$response = Invoke-WebRequest "http://chromedriver.storage.googleapis.com/LATEST_RELEASE_$chrome_majorversion" | |
$version = $response.Content | |
echo "CHROMEDRIVER_VERSION=$version" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
} | |
else | |
{ | |
echo "CHROMEDRIVER_VERSION=$chrome_fullversion" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
} | |
- uses: ./ | |
if: matrix.branch == 'now' | |
with: | |
chromedriver-version: ${{ env.CHROMEDRIVER_VERSION }} | |
- uses: nanasess/setup-chromedriver@master | |
if: matrix.branch == 'master' | |
with: | |
chromedriver-version: ${{ env.CHROMEDRIVER_VERSION }} | |
- name: setup | |
run: | | |
chromedriver --url-base=/wd/hub & | |
node_modules\.bin\ts-node "$Env:GITHUB_WORKSPACE\__tests__\chromedriver.ts" | |
test_default_version: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, windows-2019 ] | |
branch: | |
# - 'master' | |
- 'now' | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: pwsh | |
run: echo "CHROMEAPP=C:\Program Files\Google\Chrome\Application\chrome.exe" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append | |
- run: yarn install --frozen-lockfile | |
- run: yarn build | |
- run: yarn package | |
- run: yarn test | |
# - run: | | |
# node_modules/.bin/tsc $GITHUB_WORKSPACE/__tests__/chromedriver.ts | |
# # Cannot find chromedriver when using ncc. | |
# # see https://github.com/nanasess/setup-chromedriver/issues/303 | |
# # node_modules/.bin/ncc build $GITHUB_WORKSPACE/__tests__/chromedriver.js -o $GITHUB_WORKSPACE/__tests__ | |
# # rm -rf node_modules | |
# shell: bash | |
- uses: ./ | |
if: matrix.branch == 'now' | |
- uses: nanasess/setup-chromedriver@master | |
if: matrix.branch == 'master' | |
- name: setup | |
run: | | |
chromedriver --url-base=/wd/hub & | |
node_modules\.bin\ts-node "$Env:GITHUB_WORKSPACE\__tests__\chromedriver.ts" |