chore(deps): bump mermaid from 9.3.0 to 10.9.3 #804
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 | |
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: '20' | |
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 |