From 0d0f998f2891417c3609fda383e08753d605c77e Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Tue, 10 Sep 2024 16:01:23 -0700 Subject: [PATCH] Always upload eslint.sarif --- .github/workflows/pr-checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index cfb4c1ab0c..c9ea2dbb42 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -24,12 +24,13 @@ jobs: uses: actions/checkout@v4 - name: Lint + id: lint run: npm run-script lint-ci - name: Upload sarif uses: github/codeql-action/upload-sarif@v3 # Only upload SARIF for the latest version of Node.js - if: matrix.node-types-version == 'current' + if: "always() && matrix.node-types-version == 'current'" with: sarif_file: eslint.sarif category: eslint