add frontend test to CI

This commit is contained in:
2026-03-31 19:54:29 -07:00
parent f905bede92
commit f85a6ff61a

View File

@@ -31,5 +31,11 @@ jobs:
working-directory: frontend working-directory: frontend
run: npm install run: npm install
- name: Run tests - name: Run backend tests
run: python -m pytest -q run: python -m pytest -q
- name: Run frontend lint
run: npm run lint
- name: Run frontend tests
run: npm run test