Skip to content

Bump @vitejs/plugin-vue from 5.1.4 to 5.1.5 in /frontend #798

Bump @vitejs/plugin-vue from 5.1.4 to 5.1.5 in /frontend

Bump @vitejs/plugin-vue from 5.1.4 to 5.1.5 in /frontend #798

Workflow file for this run

name: run e2e tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: |
cd frontend/
npm ci
npm run build:test
- name: Install Playwright Browsers
run: |
cd frontend/
npx playwright install --with-deps
- name: Run Playwright tests
run: |
cd frontend/
npm run test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: frontend/playwright-report/
retention-days: 30