From a6884db1d3ab949c751b43f009509d5f0ad11143 Mon Sep 17 00:00:00 2001 From: Soufiane Fariss Date: Fri, 2 Aug 2024 02:01:38 +0200 Subject: [PATCH] fix: add lint and test steps to deploy workflow --- .github/workflows/deploy-webui.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy-webui.yml b/.github/workflows/deploy-webui.yml index 4188bcc3..de08df6e 100644 --- a/.github/workflows/deploy-webui.yml +++ b/.github/workflows/deploy-webui.yml @@ -41,6 +41,12 @@ jobs: - name: Install dependencies run: npm ci working-directory: ./webui + - name: Lint + run: npm run lint + working-directory: ./webui + - name: Run unit tests + run: npm run test + working-directory: ./webui - name: Build run: npm run build working-directory: ./webui