Skip to content

Add initial tests for Work page, testing all metadata display and the… #13

Add initial tests for Work page, testing all metadata display and the…

Add initial tests for Work page, testing all metadata display and the… #13

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, deploy-staging, 4284-playwright-setup]
pull_request:
branches: [main, deploy-staging]
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Build app
run: npm run build
env:
NEXT_PUBLIC_DCAPI_ENDPOINT: ${{ secrets.NEXT_PUBLIC_DCAPI_ENDPOINT }}
- name: Start app
run: npm run start &
- name: Wait for server
run: npx wait-on http://localhost:3000
- name: Run Playwright tests
run: npx playwright test
env:
BASE_URL: ${{ secrets.BASE_URL }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30