From 02c9a1c0c52a3bedc97c5c0f6e96a1921f4da4ed Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Thu, 18 Sep 2025 21:31:16 -0400 Subject: [PATCH] fix: nx affected (#1387) Signed-off-by: Todd Baert Signed-off-by: wadii --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c026f37f..4b7f29e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,9 +31,9 @@ jobs: - run: git branch --track main origin/main || true - run: if ! npx nx format:check ; then echo "Format check failed. Please run 'npx nx format:write'."; fi - - run: npx nx affected --target=lint --parallel=3 --exclude=js-sdk-contrib - - run: npx nx affected --target=test --parallel=3 --ci --code-coverage --exclude=js-sdk-contrib - - run: npx nx affected --target=build --parallel=3 --exclude=js-sdk-contrib + - run: npx nx affected --base=origin/main --target=lint --parallel=3 --exclude=js-sdk-contrib + - run: npx nx affected --base=origin/main --target=test --parallel=3 --ci --code-coverage --exclude=js-sdk-contrib + - run: npx nx affected --base=origin/main --target=build --parallel=3 --exclude=js-sdk-contrib e2e: runs-on: ubuntu-latest