From 91631336f326b6dc93a12bfa98717589813d0fff Mon Sep 17 00:00:00 2001 From: Rukh-Khan Date: Fri, 3 Jan 2025 08:43:02 +0530 Subject: [PATCH] refactor : workflows-pull-request.yml --- .github/workflows/pull-request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c815dc36f1..da769dbd93 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -59,7 +59,7 @@ jobs: if: steps.changed-files.outputs.only_changed != 'true' env: CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} - run: npx eslint "${CHANGED_FILES}"" + run: npx eslint "${CHANGED_FILES}" - name: Check for TSDoc comments run: npm run check-tsdoc # Run the TSDoc check script @@ -531,3 +531,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PR_NUMBER: ${{ github.event.pull_request.number }} GITHUB_REPOSITORY: ${{ github.repository }} +