From 19b591b04d22ecb4fba98b488f133ae04790073c Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:41:28 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2eb35c..1177277 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,12 +43,16 @@ jobs: - name: Install dependencies ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป run: yarn - - name: Run linter ๐Ÿ‘€ + - name: Run linter in root directory ๐Ÿ‘€ run: yarn lint - - name: Run tests ๐Ÿงช + - name: Run tests in root directory ๐Ÿงช run: yarn test - name: Run tests in new-web directory ๐Ÿ“‚ working-directory: new-web run: yarn test + + - name: Run lint in new-web directory ๐Ÿ“‚ + working-directory: new-web + run: yarn lint