Skip to content

Bump chromedriver from 125.0.3 to 127.0.3 #72

Bump chromedriver from 125.0.3 to 127.0.3

Bump chromedriver from 125.0.3 to 127.0.3 #72

Workflow file for this run

name: Test on branch push
on: push
jobs:
test:
runs-on: ubuntu-latest
env:
NODE_ENV: 'PROD'
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: |
yarn config set unsafe-disable-integrity-migration true -g
yarn install --ignore-engines --frozen-lockfile --non-interactive
- run: xvfb-run yarn unit
if: always()
env:
DISPLAY: 99.0
DBUS_SESSION_BUS_ADDRESS: '/dev/null'
- name: Install Playwright Browsers
if: always()
run: npx playwright install --with-deps
- name: Run Playwright tests
if: always()
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 1