Skip to content

Address review findings and stabilize UI snapshots #3

Address review findings and stabilize UI snapshots

Address review findings and stabilize UI snapshots #3

Workflow file for this run

name: UI Tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
playwright:
runs-on: macos-14
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Set up Chrome
id: chrome
uses: browser-actions/setup-chrome@v1
- name: Install dependencies
run: npm ci
- name: Run project verification
run: npm test
- name: Run Playwright UI tests
run: npm run test:ui
env:
CHROME_PATH: ${{ steps.chrome.outputs.chrome-path }}
- name: Upload Playwright artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-artifacts
path: |
playwright-report
test-results