From 9beee7baae9e77be06aa4a1f5217ec3bd12ca1c4 Mon Sep 17 00:00:00 2001 From: Aron Buzogany Date: Sun, 18 Feb 2024 15:40:05 +0100 Subject: [PATCH] added linting check to workflow --- .github/workflows/ci-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 65fd357d..609fd0a1 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -32,3 +32,7 @@ jobs: - name: Running tests working-directory: ./frontend run: npm test + + - name: Run linting + working-directory: ./frontend + run: npm run lint