From 92a9694346fdcb342aefefaf0adce36c29817407 Mon Sep 17 00:00:00 2001 From: Vamshi Maskuri <117595548+varshith257@users.noreply.github.com> Date: Tue, 26 Nov 2024 02:30:47 +0530 Subject: [PATCH] fix failing workflow of TS compilation (#2472) * fix workflows failing of TS and lint * Update pull-request.yml * Update pull-request.yml --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 18f273adc1..a7e41faad7 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -212,7 +212,7 @@ jobs: - name: TypeScript compilation for changed files run: | - for file in ${{ steps.changed-files.outputs.all_changed_files }}; do + for file in ${{ steps.changed-files.outputs.all_files }}; do if [[ "$file" == *.ts || "$file" == *.tsx ]]; then npx tsc --noEmit "$file" fi