Merge pull request #3726 from github/aeisenberg/no-upload-sarif

This commit is contained in:
Andrew Eisenberg
2024-09-24 06:47:16 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -103,7 +103,7 @@ jobs:
npm run lint-ci
- name: Upload ESLint results to Code Scanning
if: "${{ !cancelled() }}"
if: "${{ !cancelled() && !startsWith(github.head_ref, 'dependabot/')}}"
uses: github/codeql-action/upload-sarif@main
with:
sarif_file: extensions/ql-vscode/build/eslint.sarif

View File

@@ -6,7 +6,7 @@ import {
beforeAll(async () => {
await beforeAllAction();
});
}, 20_000);
beforeEach(async () => {
await beforeEachAction();