Skip to content

chore(deps): update driver development dependencies #1204

chore(deps): update driver development dependencies

chore(deps): update driver development dependencies #1204

Workflow file for this run

name: 'Playwright'
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_playwright_chromium:
name: 'Chromium'
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/chromium.sh
- run: bash ./scripts/ci/jobs/test_playwright_chromium.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_playwright_chromium
path: __artifacts__/jest/*.png
test_playwright_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_playwright_firefox.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_playwright_firefox
path: __artifacts__/jest/*.png
test_playwright_webkit:
name: 'WebKit'
runs-on: macos-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/webkit.sh
- run: bash ./scripts/ci/jobs/test_playwright_webkit.sh
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: screenshots_playwright_webkit
path: __artifacts__/jest/*.png