feat(ui): complete React Bits PixelCard implementation across all das… #4
This file contains hidden or 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: E2E Confirmation Pages (Live) | |
| on: | |
| workflow_dispatch: {} | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'app/student-intake/confirmation/**' | |
| - 'app/preceptor-intake/confirmation/**' | |
| - 'tests/e2e/*confirmation*.spec.ts' | |
| - 'playwright.external.config.ts' | |
| jobs: | |
| confirmation-smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright (Chromium only) | |
| run: npx playwright install --with-deps chromium | |
| - name: Run confirmation page tests (external config) | |
| env: | |
| PLAYWRIGHT_BASE_URL: https://sandboxmentoloop.online | |
| run: | | |
| npx playwright test \ | |
| -c playwright.external.config.ts \ | |
| tests/e2e/student-confirmation.spec.ts \ | |
| tests/e2e/preceptor-confirmation.spec.ts \ | |
| --reporter=line | |