test: add E2E quiz lesson seed and update test implementations for co… #1020
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 |