Skip to content

Commit

Permalink
fix failing workflow of TS compilation (#2472)
Browse files Browse the repository at this point in the history
* fix workflows failing of TS and lint

* Update pull-request.yml

* Update pull-request.yml
  • Loading branch information
varshith257 authored Nov 25, 2024
1 parent 6ae40a3 commit 92a9694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92a9694

Please sign in to comment.