From 5a146943950c4e24beceb49a0a2d3cd3a17eaaec Mon Sep 17 00:00:00 2001 From: hasparus Date: Mon, 20 Dec 2021 11:54:52 +0100 Subject: [PATCH] chore(ci): run eslint --quiet in GH Actions --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d863d012..7c6edc9a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,9 @@ jobs: install-command: yarn --ignore-optional --pure-lockfile --non-interactive + - name: Run linter + run: yarn lint --quiet + - name: Run tests and collect coverage run: yarn test --coverage