Skip to content

chore(deps): update devdependencies (non-major) (minor) #972

chore(deps): update devdependencies (non-major) (minor)

chore(deps): update devdependencies (non-major) (minor) #972

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
name: E2E
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
env:
CI: true
VITE_PORT: 3002
VITE_API_HOST: http://localhost:3000
VITE_CLIENT_HOST: http://localhost:3114
VITE_HOST: http://localhost:3002
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30