Skip to content

Bump the tools group with 3 updates #35

Bump the tools group with 3 updates

Bump the tools group with 3 updates #35

Workflow file for this run

name: E2E Tests
permissions:
contents: read
on: [push, pull_request]
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: pnpm
- run: pnpm install
- name: Run E2E Tests
run: npm run test:e2e
env:
CI: true
- uses: actions/upload-artifact@v6
if: ${{ !cancelled() }}
with:
name: playwright-report
path: tests/e2e/playwright-report/
retention-days: 30