diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 662b383863..144e6e4538 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -69,17 +69,17 @@ jobs: - name: ESLint (core) if: ${{ !cancelled() }} - run: pnpm exec eslint app/assets/javascripts + run: pnpm eslint app/assets/javascripts - name: ESLint (core plugins) if: ${{ !cancelled() }} - run: pnpm exec eslint plugins + run: pnpm eslint plugins - name: Prettier if: ${{ !cancelled() }} run: | - pnpm exec prettier -v - pnpm exec pprettier --list-different \ + pnpm prettier -v + pnpm pprettier --list-different \ "app/assets/stylesheets/**/*.scss" \ "app/assets/javascripts/**/*.js" \ "plugins/**/assets/stylesheets/**/*.scss" \ @@ -88,7 +88,7 @@ jobs: - name: Ember template lint if: ${{ !cancelled() }} run: | - pnpm exec ember-template-lint \ + pnpm ember-template-lint \ --no-error-on-unmatched-pattern \ "app/assets/javascripts/**/*.hbs" \ "plugins/**/assets/javascripts/**/*.hbs"