compose: use GHCR Workspace image; add /import volume; docs: correct … #5
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E Tests | |
| on: [push, pull_request] | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Python deps | |
| run: | | |
| pip install -e .[dev] | |
| - name: Install Playwright browsers and OS deps | |
| uses: microsoft/playwright-github-action@v1 | |
| - name: Run E2E tests (headless) | |
| run: pytest tests/e2e -v |