Skip to content

Update README.md with additional resources and installation instructi… #8

Update README.md with additional resources and installation instructi…

Update README.md with additional resources and installation instructi… #8

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, biome]
pull_request:
branches: [main]
jobs:
quality-gate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Lint and format check
run: npm run check
test:
runs-on: ubuntu-latest
needs: quality-gate
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install chrome --with-deps
- name: Run Playwright tests
run: npx playwright test
- name: Upload test report
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30