Skip to content

Niloofar | Mark | @deriv/integration and playwright implementations [POC] #30

Niloofar | Mark | @deriv/integration and playwright implementations [POC]

Niloofar | Mark | @deriv/integration and playwright implementations [POC] #30

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test_setup:
name: Test setup
runs-on: ubuntu-latest
outputs:
preview_url: ${{ steps.waitForVercelPreviewDeployment.outputs.url }}
steps:
- name: Wait for Vercel preview deployment to be ready
uses: patrickedqvist/wait-for-vercel-preview
id: waitForVercelPreviewDeployment
with:
token: ${{ secrets.GITHUB_TOKEN }}
max_timeout: 300
test_e2e:
needs: test_setup
name: Playwright tests
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Prepare testing env
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm ci
- run: npx playwright install --with-deps
- name: Run tests
run: npm run test:e2e
env:
PLAYWRIGHT_TEST_BASE_URL: ${{ needs.test_setup.outputs.preview_url }}