Playwright Tests Published #520
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: Playwright Tests Published | |
on: | |
deployment_status: | |
jobs: | |
run-e2e-published: | |
name: Run end-to-end tests on published site | |
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install && npx playwright install --with-deps | |
- name: Run tests on preview PR | |
if: github.event.deployment_status.environment != 'Production' | |
run: npx playwright test | |
env: | |
PUBLIC_ENV: preview | |
VERCEL_URL: ${{ github.event.deployment_status.target_url }} | |
DEBUG: pw:api | |
- name: Run tests on production PR | |
if: github.event.deployment_status.environment == 'Production' | |
run: npx playwright test | |
env: | |
PUBLIC_ENV: production | |
VERCEL_URL: https://sharrr.com | |
DEBUG: pw:api | |
- name: Create folder for artifacts | |
if: always() | |
run: mkdir -p test-results | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: playwright-report-published | |
path: test-results |