From 289c2f848aec44da03692d4119aa9e1544dc9292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Edenstr=C3=B6m?= Date: Wed, 6 Oct 2021 22:09:55 +0200 Subject: [PATCH] fix: update github workflow to run nx instead of lerna --- .github/workflows/pr_check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index a2e3467ef..dc3ee43f8 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -24,11 +24,11 @@ jobs: timezone: Europe/Stockholm - name: Install dependencies - run: npx lerna bootstrap - + run: yarn + - name: Run linting and tests run: | - yarn lint - yarn test + nx run-many --all --target=lint + nx run-many --all --target=test env: CI: true