Skip to content

πŸ€– Bump @typescript-eslint/parser from 7.15.0 to 7.16.0 #33

πŸ€– Bump @typescript-eslint/parser from 7.15.0 to 7.16.0

πŸ€– Bump @typescript-eslint/parser from 7.15.0 to 7.16.0 #33

Workflow file for this run

name: "E2E-Testing"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "20.13"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Set up PlayWright browser
run: npx playwright install --with-deps
- name: Build frontend
run: npm run build
- name: Start dev server
run: npm run dev &
- name: Run Playwright tests
run: npx playwright test