From 649f460d84f8023e7cd70cc423e523628fce2be4 Mon Sep 17 00:00:00 2001 From: Glenn Latomme Date: Tue, 17 Dec 2024 16:00:01 +0100 Subject: [PATCH] ci: no concurent scripts --- .github/workflows/ci-v2.yml | 2 +- .github/workflows/main-v2.yml | 2 +- .nx/workflows/bun.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-v2.yml b/.github/workflows/ci-v2.yml index 0b6fac684..1ce842f62 100644 --- a/.github/workflows/ci-v2.yml +++ b/.github/workflows/ci-v2.yml @@ -42,7 +42,7 @@ jobs: # - run: bun nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" - - run: bun install --no-cache + - run: bun install --no-cache --concurrent-scripts 1 - run: bun nx affected -t test build -c ci diff --git a/.github/workflows/main-v2.yml b/.github/workflows/main-v2.yml index 6d5ed7372..55897673f 100644 --- a/.github/workflows/main-v2.yml +++ b/.github/workflows/main-v2.yml @@ -69,7 +69,7 @@ jobs: # - run: bun nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" - - run: bun install --no-cache + - run: bun install --no-cache --concurrent-scripts 1 - run: bun nx affected -t test build -c ci diff --git a/.nx/workflows/bun.yaml b/.nx/workflows/bun.yaml index b35f8545c..b0cc3073c 100644 --- a/.nx/workflows/bun.yaml +++ b/.nx/workflows/bun.yaml @@ -26,6 +26,6 @@ launch-templates: sudo apt install unzip curl -fsSL https://bun.sh/install | bash - name: Install Node Modules (with Bun) - script: bun install --frozen-lockfile --ignore-scripts + script: bun install --frozen-lockfile --ignore-scripts - name: Install Browsers (if needed) uses: 'nrwl/nx-cloud-workflows/v4/workflow-steps/install-browsers/main.yaml' \ No newline at end of file