From e381613abdd3b084ce6340d33a8bbc6be2320ad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sarstr=C3=B6m?= Date: Wed, 1 Dec 2021 10:02:21 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20Separeted=20lint=20and?= =?UTF-8?q?=20tests=20in=20github=20actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr_check.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index d4cad35b..0a4c906d 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -26,9 +26,14 @@ jobs: - name: Install dependencies run: yarn - - name: Run linting and tests + - name: Run lint run: | - yarn nx run-many --all --target=lint - yarn nx run-many --all --target=test + yarn lint env: CI: true + + - name: Run tests + run: | + yarn test + env: + CI: true \ No newline at end of file