Skip to content

chore: configure roborev for cross-model review and document workflow #1

chore: configure roborev for cross-model review and document workflow

chore: configure roborev for cross-model review and document workflow #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build extension
run: npm run build
- name: Install Playwright browsers
run: npx playwright install chromium
- name: Run E2E tests
run: xvfb-run npm run test:e2e
- name: Upload extension artifact
uses: actions/upload-artifact@v4
if: success()
with:
name: solid-browser-extension
path: dist/
- name: Upload test results
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results
path: |
test-results/
playwright-report/