From 1998c0ad636dc8d03833ecb790281f21e9d9c555 Mon Sep 17 00:00:00 2001 From: Severiano Badajoz Date: Tue, 27 Jul 2021 09:43:01 -0700 Subject: [PATCH] fix: don't run lint with `--fix` on push tests (#2273) * fix: don't run lint with `--fix` on push tests * npx Co-authored-by: maniarathi Co-authored-by: Madison Dunitz --- .github/workflows/push_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push_tests.yml b/.github/workflows/push_tests.yml index a14227f4c..a0ab94b7a 100644 --- a/.github/workflows/push_tests.yml +++ b/.github/workflows/push_tests.yml @@ -40,7 +40,7 @@ jobs: - name: Lint src with eslint working-directory: ./client run: | - make lint + npx eslint src __tests__ unit-test: runs-on: ubuntu-latest