From ed69112f7505ff248df4adc00364238c05cf7a3d Mon Sep 17 00:00:00 2001 From: Frederik Petersen Date: Mon, 4 Jan 2021 17:53:58 +0100 Subject: [PATCH] Prefix prettier and eslint with npx --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 690fbfe..71eeeb8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,8 +26,8 @@ jobs: yarn install --frozen-lockfile - name: Lint and formatting check run: | - prettier --check . - eslint . + npx prettier --check . + npx eslint . - name: Unit tests run: | yarn test-xarf