Skip to content

feat: the end of flat design post #638

feat: the end of flat design post

feat: the end of flat design post #638

Workflow file for this run

name: E2E Tests
permissions:
contents: read
pull-requests: write
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.11.0 # match package.json:packageManager version.
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- run: pnpm i --frozen-lockfile
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Run Playwright tests
run: pnpm exec playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30