Skip to content

TinaCMS content update #290

TinaCMS content update

TinaCMS content update #290

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main, preview ]
pull_request:
branches: [ main, preview ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Waiting for 200 from the Vercel Preview
uses: patrickedqvist/wait-for-vercel-preview@v1.3.1
id: waitFor200
with:
token: ${{ secrets.GITHUB_TOKEN }}
environment: Production
max_timeout: 300
- run: echo ${{steps.waitFor200.outputs.url}}
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run Jest tests
run: npm run test
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
env:
BASE_URL: ${{ steps.waitFor200.outputs.url }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30