Skip to content

feat: add Playwright E2E testing support with app-e2e package; implem… #181

feat: add Playwright E2E testing support with app-e2e package; implem…

feat: add Playwright E2E testing support with app-e2e package; implem… #181

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Build core package
run: npm run build
- name: Build app
run: npm run build:app
- name: Run type check
run: npm run type-check
- name: Install Playwright Chromium
run: npm exec --workspace=@eclipse-lyra/app-e2e -- playwright install chromium --with-deps
- name: Run E2E tests
run: npm run test:e2e