Skip to content

feat(ui): complete React Bits PixelCard implementation across all das… #4

feat(ui): complete React Bits PixelCard implementation across all das…

feat(ui): complete React Bits PixelCard implementation across all das… #4

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