From f85a6ff61aa443679619bc6313dc2b34eee5534a Mon Sep 17 00:00:00 2001 From: matei jordache Date: Tue, 31 Mar 2026 19:54:29 -0700 Subject: [PATCH] add frontend test to CI --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85d3c42..1761b17 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,5 +31,11 @@ jobs: working-directory: frontend run: npm install - - name: Run tests + - name: Run backend tests run: python -m pytest -q + + - name: Run frontend lint + run: npm run lint + + - name: Run frontend tests + run: npm run test