Skip to content

lint: fix issues

lint: fix issues #3

Workflow file for this run

name: E2E
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
e2e:
runs-on: ubuntu-latest
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install Playwright browsers
run: cd e2e && pnpm exec playwright install --with-deps
- name: Build workspace
run: pnpm -w build
- name: Run Playwright smoke tests
run: pnpm e2e:smoke
- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: e2e/playwright-report
if-no-files-found: ignore
- name: Upload traces
if: failure()
uses: actions/upload-artifact@v4
with:
name: traces
path: test-results/**/*.zip
if-no-files-found: ignore