Skip to content

🤖 Bump @typescript-eslint/eslint-plugin from 7.16.0 to 7.16.1 #43

🤖 Bump @typescript-eslint/eslint-plugin from 7.16.0 to 7.16.1

🤖 Bump @typescript-eslint/eslint-plugin from 7.16.0 to 7.16.1 #43

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