Skip to content

fix

fix #347

Workflow file for this run

name: Validate
on: [push]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Node.js
uses: ./.github/actions/setup-node
- name: Check
run: pnpm check
# TODO: cache playwright
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Build app for e2e tests
run: pnpm build
- name: Run e2e tests
run: pnpm e2e
- uses: actions/[email protected]
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30