From d4c8559db5388de61e778d3b3eafa6ce9ac9ea43 Mon Sep 17 00:00:00 2001 From: joluj Date: Wed, 12 Jun 2024 09:37:09 +0200 Subject: [PATCH] Remove parallel execution --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 216aedb2..6b382d19 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,17 +37,17 @@ jobs: run: npm run generate - name: Build - run: npx nx affected --target=build --configuration=prod --verbose + run: npx nx affected --target=build --verbose --parallel=1 --configuration=prod - name: Lint - run: npx nx affected --target=lint --verbose --maxWarnings=0 + run: npx nx affected --target=lint --verbose --parallel=1 --maxWarnings=0 - name: Test - run: npx nx affected --target=test --verbose --base=remotes/origin/main --head=HEAD --ci + run: npx nx affected --target=test --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci # Ensure this works for future release publishing - name: Publish Dry-Run - run: npx nx affected --target=pre-publish --verbose --base=remotes/origin/main --head=HEAD --ci + run: npx nx affected --target=pre-publish --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci # Ensure this works for future release publishing - name: Pack VSCode Extension