feat: implement LoginFixture for streamlined login/logout in e2e tests #1013
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Nightly Playwright Tests | |
# env: | |
# HUSKY: 0 | |
# on: | |
# schedule: | |
# - cron: "0 6 * * *" | |
# workflow_dispatch: | |
# jobs: | |
# playwright: | |
# name: Playwright Tests | |
# runs-on: ubuntu-latest | |
# container: | |
# image: mcr.microsoft.com/playwright:v1.45.3-jammy | |
# defaults: | |
# run: | |
# working-directory: ./apps/web/ | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: pnpm/action-setup@v4 | |
# - uses: actions/setup-node@v4 | |
# with: | |
# node-version: 20.15.0 | |
# - name: Install dependencies | |
# run: pnpm install | |
# - name: Run your tests | |
# run: pnpm playwright test | |
# env: | |
# HOME: /root |