fix: address review — AVIF sniff, cursor Enter, full-res fallback, pe… #8
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, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: { node-version: 22 } | |
| - uses: actions/setup-python@v5 | |
| with: { python-version: '3.13' } | |
| - name: qmllint & validate (if omarchy available, else skip) | |
| run: | | |
| if command -v qmllint >/dev/null; then qmllint --version; fi | |
| if command -v omarchy >/dev/null; then omarchy plugin validate ./ || true; fi | |
| - name: JS tests (Model) | |
| run: node --test tests/Model.test.js | |
| - name: Python tests (bin) | |
| run: python3 -m unittest discover -s tests/python -v |