Skip to content

Bump node in actions to 24 #40

Bump node in actions to 24

Bump node in actions to 24 #40

Workflow file for this run

name: E2E tests
on:
pull_request:
jobs:
e2e:
runs-on: macos-15
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- name: Install deps
run: yarn
- name: Download binaries
run: yarn download-binaries
- name: Run e2e tests
run: yarn test:e2e
env:
CI: true
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
- name: Upload Playwright report on failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
retention-days: 7