From 81166475085a1ff3d1ed5a990573a70d4eaf90de Mon Sep 17 00:00:00 2001 From: Ishan Rai Date: Mon, 6 Jul 2020 11:41:56 +0530 Subject: [PATCH] remove redundant npx --- .github/workflows/jsonlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jsonlint.yml b/.github/workflows/jsonlint.yml index d3c2abc92..f3f976623 100644 --- a/.github/workflows/jsonlint.yml +++ b/.github/workflows/jsonlint.yml @@ -20,5 +20,5 @@ jobs: sudo npm install -g jsonlint - name: Lint with jsonlint run: | - for file in ${{ env.GIT_DIFF }}; do npx jsonlint $file; done + for file in ${{ env.GIT_DIFF }}; do jsonlint $file; done if: env.GIT_DIFF