From 961ee3df414c23f3b5c66bc5f301c09671b6234f Mon Sep 17 00:00:00 2001 From: Sandeep Srinivasa Date: Thu, 9 Nov 2023 11:30:45 +0530 Subject: [PATCH] Update prettier-js-format.yml --- .github/workflows/prettier-js-format.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/prettier-js-format.yml b/.github/workflows/prettier-js-format.yml index 0302a1c69..37428d5ef 100644 --- a/.github/workflows/prettier-js-format.yml +++ b/.github/workflows/prettier-js-format.yml @@ -48,11 +48,11 @@ jobs: --config JS/.eslintrc.js --ext .js,.jsx,.ts,.tsx continue-on-error: true - - name: Upload analysis results to GitHub - uses: github/codeql-action/upload-sarif@v2 - with: - sarif_file: eslint-results.sarif - wait-for-processing: true + # - name: Upload analysis results to GitHub + # uses: github/codeql-action/upload-sarif@v2 + # with: + # sarif_file: eslint-results.sarif + # wait-for-processing: true - name: Run Prettiers run: npx prettier --tab-width 4 --print-width 100 --trailing-comma es5 --ignore-path "$(CURDIR)/node_modules/*" --write JS/ - name: Commit changes