From cdd7b42f21f63335c4ca3a104be935e701e19721 Mon Sep 17 00:00:00 2001 From: jimmoffet Date: Mon, 15 Aug 2022 16:42:40 -0700 Subject: [PATCH] add js tests to checks.yml --- .github/workflows/checks.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index f5a14b29a..0dd734caa 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -47,5 +47,7 @@ jobs: run: flake8 . - name: Check imports alphabetized run: isort --check-only ./app ./tests - - name: Run tests + - name: Run js tests + run: npm test + - name: Run py tests run: pytest -n4 --maxfail=10