Keep review graphs aligned on empty and service-shaped walks #102
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| cache-dependency-path: ui/package-lock.json | |
| - name: Python tests | |
| run: | | |
| python -m pip install -e ".[dev]" | |
| python -m playwright install chromium | |
| pytest | |
| - name: UI tests | |
| working-directory: ui | |
| run: | | |
| npm install | |
| npm test | |
| npm run build | |
| - name: Desktop unit tests | |
| run: node --test desktop/backend.test.mjs desktop/urls.test.mjs |