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