Skip to content

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

feat!: bump node to v24 and setup playwright

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

Workflow file for this run

name: Test
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
GOOGLE_CLIENT_ID: test-client-id
API_BASEURL: http://localhost:3000/api
API_PORT: 3000
run: yarn test:e2e