Skip to content

build(deps-dev): bump ts-jest from 29.0.3 to 29.1.1 (#831) #665

build(deps-dev): bump ts-jest from 29.0.3 to 29.1.1 (#831)

build(deps-dev): bump ts-jest from 29.0.3 to 29.1.1 (#831) #665

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/