Bump @types/node from 20.3.1 to 20.4.2 #382
Workflow file for this run
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@v3 | |
- 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 | |
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] | |
$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 | |
- 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 "$Env:GITHUB_WORKSPACE\__tests__\index.js" | |
test_default_version: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, windows-2019 ] | |
branch: [ 'master', 'now' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 | |
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 "$Env:GITHUB_WORKSPACE\__tests__\index.js" |