Skip to content

build(deps): bump svelte from 5.16.2 to 5.17.3 #372

build(deps): bump svelte from 5.16.2 to 5.17.3

build(deps): bump svelte from 5.16.2 to 5.17.3 #372

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: 1
submodules: "recursive"
- 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