From a9f40a08d41cdb546df84dcaa1c5213b7886faaa Mon Sep 17 00:00:00 2001 From: Daniel Sheeler Date: Thu, 23 May 2024 07:22:09 -0500 Subject: [PATCH] Update eslint.yml --- .github/workflows/eslint.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 40925be..f85b847 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -5,8 +5,6 @@ on: branches: [ 'main' ] pull_request: branches: [ 'main' ] - schedule: - - cron: '33 14 * * 5' jobs: eslint: @@ -24,16 +22,7 @@ jobs: - name: Install run: | npm install eslint@^8.0.0 - npm install @microsoft/eslint-formatter-sarif@2.1.7 - name: Lint run: npx eslint . - --format @microsoft/eslint-formatter-sarif - --output-file eslint-results.sarif continue-on-error: true - - - name: Report - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: eslint-results.sarif - wait-for-processing: true