Skip to content

chore(deps): update driver development dependencies #1191

chore(deps): update driver development dependencies

chore(deps): update driver development dependencies #1191

Workflow file for this run

name: 'Selenium 3'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_selenium_3_chrome:
name: 'Chrome'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
env:
DETECT_CHROMEDRIVER_VERSION: 'true'
- run: bash ./scripts/ci/setup/chrome.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_chrome.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_chrome
path: __artifacts__/jest/*.png
test_selenium_3_firefox:
name: 'Firefox'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
- run: bash ./scripts/ci/setup/firefox.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_firefox.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_firefox
path: __artifacts__/jest/*.png
test_selenium_3_edge:
name: 'Edge'
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
path: .
- uses: actions/setup-node@v3
with:
node-version: 16
- run: echo "::set-output name=dir::$(yarn cache dir)"
id: yarn-cache-dir
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
key: yarn-cache-12-${{ hashFiles('**/yarn.lock') }}
restore-keys: yarn-cache-12-
- run: bash ./scripts/ci/setup/default.sh
- run: bash ./scripts/ci/setup/edge.sh
- run: bash ./scripts/ci/jobs/test_selenium_3_edge.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_selenium_3_edge
path: __artifacts__/jest/*.png