From 463674f74f044571b7679fd8a2b6b8893ff98435 Mon Sep 17 00:00:00 2001 From: Valery Melou Date: Fri, 10 May 2024 20:58:30 +0100 Subject: [PATCH] chore: update CI workflow to use nx run-many for running tests with code coverage --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de0a405..22068ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - run: yarn install - run: npx nx affected --target=lint --parallel=3 - - run: npx nx affected --target=test --parallel=3 --code-coverage + - run: npx nx run-many --target=test --parallel=3 --code-coverage - run: yarn merge-lcov - name: Code Coverage