From 3ae0367becbde5216c12029d24ddf8b44ed46610 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Tue, 1 Aug 2023 13:19:36 -0700 Subject: [PATCH] fix: fix CI js linting? --- .github/workflows/javascript-format-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/javascript-format-build.yml b/.github/workflows/javascript-format-build.yml index 41bb9448c..20a045870 100644 --- a/.github/workflows/javascript-format-build.yml +++ b/.github/workflows/javascript-format-build.yml @@ -61,11 +61,11 @@ jobs: - name: Lint if: steps.changed-files.outputs.src_any_changed == 'true' - run: npx eslint --fix ${{ steps.changed-files.outputs.all_changed_files }} + run: npx eslint --fix ${{ steps.changed-files.outputs.src_all_changed_files }} - name: Prettier if: steps.changed-files.outputs.src_any_changed == 'true' - run: npx prettier --write ${{ steps.changed-files.outputs.all_changed_files }} + run: npx prettier --write ${{ steps.changed-files.outputs.src_all_changed_files }} - name: Commit changes if: steps.changed-files.outputs.src_any_changed == 'true'