Skip to content

Commit

Permalink
CI: Fix eslint usage
Browse files Browse the repository at this point in the history
commit d7c7951 changed the installation
of eslint to use package.json instead of installing it globally. So
adapt the usage of eslint to that.
  • Loading branch information
Leleat committed May 1, 2024
1 parent 30d4066 commit 7b2c995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: >
git diff --name-only --diff-filter=ACMTUXB origin/${{ github.base_ref }} HEAD |
grep -E "\.js$" |
xargs -r eslint
xargs -r npx eslint
- name: Run ShellCheck (*.sh)
if: success() || failure()
run: >
Expand Down

0 comments on commit 7b2c995

Please sign in to comment.