Skip to content

feat: support MPArch sessions #4351

feat: support MPArch sessions

feat: support MPArch sessions #4351

Workflow file for this run

# This workflow will run headful selenium tests.
name: Selenium tests
# Declare default permissions as read only.
permissions: read-all
on:
merge_group:
pull_request:
push:
branches: 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
selenium:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: '.nvmrc'
cache: npm
- uses: google/wireit@83d7f8bed70b7bcfc40f4b9f54f4b7485753991b # setup-github-actions-caching/v2.0.1
- name: Install and build npm dependencies
run: npm ci
- name: Setup cache for browser binaries
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.cache/chromium-bidi
key: ${{ runner.os }}-browsers-${{ hashFiles('.browser') }}
- name: Install pinned browser
id: browser
run: node tools/install-browser.mjs --github
- name: Install chromedriver for the pinned browser
id: driver
run: node tools/install-browser.mjs --chromedriver --github
- name: Run Selenium test
timeout-minutes: 20
run: >
xvfb-run --auto-servernum
node tests_external/selenium.mjs
env:
BROWSER_BIN: ${{ steps.browser.outputs.executablePath }}
CHROMEDRIVER_BIN: ${{ steps.driver.outputs.executablePath }}