Skip to content

Upgrade Salt and replace components #646

Upgrade Salt and replace components

Upgrade Salt and replace components #646

Workflow file for this run

name: Playwright Tests
on:
pull_request:
branches:
- main
jobs:
site_preview:
name: Site Preview
runs-on: ubuntu-latest
outputs:
preview_url: ${{ steps.waitForVercelPreviewDeployment.outputs.url }}
steps:
- name: Wait for Vercel preview deployment to be ready
uses: patrickedqvist/[email protected]
id: waitForVercelPreviewDeployment
with:
token: ${{ secrets.GITHUB_TOKEN }}
max_timeout: 1500
check_interval: 10
test_e2e:
needs: site_preview
name: Playwright tests
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Prepare testing env
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: '16.10.0'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: yarn run e2e
env:
PLAYWRIGHT_TEST_BASE_URL: ${{ needs.site_preview.outputs.preview_url }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: ./packages/site/e2e/**/*.png
retention-days: 14