Skip to content

Update dependencies and move to pnpm #44

Update dependencies and move to pnpm

Update dependencies and move to pnpm #44

Workflow file for this run

name: Playwright Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
defaults:
run:
working-directory: vclogin
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install playwright browser chromium
run: npx playwright install chromium --with-deps
- name: Run playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30