Skip to content

feat: add PageLLMProfileNode and all-LLM capsule-grounded pipeline #17

feat: add PageLLMProfileNode and all-LLM capsule-grounded pipeline

feat: add PageLLMProfileNode and all-LLM capsule-grounded pipeline #17

Workflow file for this run

name: "E2E Tests (CI only)"
on:
push:
branches: [ main, master ]
pull_request:
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install Node dependencies (web)
working-directory: web
run: npm ci
- name: Install Playwright browsers
working-directory: web
run: npx playwright install --with-deps
- name: Run Playwright E2E Tests
working-directory: web
run: npx playwright test --reporter=list