build(deps-dev): bump chromedriver from 107.0.3 to 119.0.1 #679
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: E2E popup tests | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
e2e-popup-tests: | |
runs-on: ubuntu-latest | |
container: | |
image: node:16 | |
strategy: | |
fail-fast: false | |
matrix: | |
# Add Firefox after fixing CI errors | |
browser: [ 'chrome' ] | |
node-version: [ 16.x ] | |
services: | |
selenium: | |
image: selenium/standalone-${{ matrix.browser }} | |
options: --shm-size=2gb | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache npm dependencies | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Run E2E popup tests on ${{ matrix.browser }} | |
run: npm run test:e2e:${{ matrix.browser }}:headless:popup | |
env: | |
SELENIUM_HOST: selenium | |
SELENIUM_PORT: 4444 | |
- name: Add screenshot | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: ${{ matrix.browser }} | |
path: test-artifacts/ |