From fd101bd25107ffdb58ecadb9a650d810b70d8697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Am=C3=A9rico?= Date: Wed, 9 Sep 2020 20:15:11 -0300 Subject: [PATCH] Fix running lint script on lint and test action --- .github/workflows/lint-test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 8cea068f1..2a3a31124 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -23,5 +23,6 @@ jobs: - name: Install dependencies run: yarn --frozen-lockfile - name: Run ESLint - run: npm run eslint - - run: npm test + run: npm run lint + - name: Run tests + run: npm test