Skip to content

glimmer validator compat #459

glimmer validator compat

glimmer validator compat #459

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test_playwright:
name: Playwright tests queue
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: wyvox/action-setup-pnpm@v3
with:
node-version: "20.1.0"
- name: Install Playwright Browsers
run: pnpm exec playwright install
- name: Run Playwright tests
run: pnpm test:playwright
- name: Merge coverage results
run: pnpm run nyc:merge:playwright
- name: Generate coverage report
run: pnpm run nyc:report
- name: Upload Playwright coverage report
uses: actions/upload-artifact@v3
with:
name: playwright-coverage
path: ./coverage/playwright-final.json
retention-days: 30
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30