diff --git a/.github/workflows/ci_webui.yaml b/.github/workflows/ci_webui.yaml index 43228af2b..84b0b2003 100644 --- a/.github/workflows/ci_webui.yaml +++ b/.github/workflows/ci_webui.yaml @@ -42,18 +42,22 @@ jobs: run: npm test - name: Lint code + if: ${{ !cancelled() }} run: npm run lint - name: Format code + if: ${{ !cancelled() }} run: | npm run format git diff --exit-code - name: Initialize CodeQL uses: github/codeql-action/init@v3 + if: ${{ !cancelled() }} with: config-file: .github/workflows/helper/codeql/js.yaml languages: javascript - name: Run CodeQL analysis + if: ${{ !cancelled() }} uses: github/codeql-action/analyze@v3