Skip to content

feat!: bump node to v24 and setup playwright #3

feat!: bump node to v24 and setup playwright

feat!: bump node to v24 and setup playwright #3

Workflow file for this run

name: E2E
on:
pull_request:
branches:
- main
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile --network-timeout 300000
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run e2e tests
env:
TZ: Etc/UTC
run: yarn test:e2e