From 13c80ae5820ee6130d5872daa7b6e697672e3f21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CJamesHenry=E2=80=9D?= Date: Wed, 7 Feb 2024 15:25:33 +0400 Subject: [PATCH] chore: unset GITHUB_ACTIONS environment variable in other node versions workflow --- .github/workflows/other-node-versions.yml | 5 ++++- packages/legacy-package-management/package.json | 2 +- packages/legacy-structure/commands/create/package.json | 2 +- packages/lerna/package.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/other-node-versions.yml b/.github/workflows/other-node-versions.yml index c8bbaa772d..25eca7fbd2 100644 --- a/.github/workflows/other-node-versions.yml +++ b/.github/workflows/other-node-versions.yml @@ -110,7 +110,10 @@ jobs: git config --global user.signingkey $GPG_KEY_ID - name: Run e2e tests for task-runner - run: npx nx prepare-for-e2e e2e-run-task-runner && e2e/run/task-runner/src/run-tests.sh + run: | + # We do not want the automatic Github Actions grouping to be applied to the e2e tests, or the snapshots won't match local + unset GITHUB_ACTIONS + npx nx prepare-for-e2e e2e-run-task-runner && e2e/run/task-runner/src/run-tests.sh shell: bash env: # Silently disable nx cloud for task runner e2e (using NX_NO_CLOUD produces a warning log) diff --git a/packages/legacy-package-management/package.json b/packages/legacy-package-management/package.json index dd2f1b7a07..1d8d28993c 100644 --- a/packages/legacy-package-management/package.json +++ b/packages/legacy-package-management/package.json @@ -92,5 +92,5 @@ "exports": { ".": "./dist/index.js" }, - "gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4" + "gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3" } diff --git a/packages/legacy-structure/commands/create/package.json b/packages/legacy-structure/commands/create/package.json index be1d17acd6..cb0923bdaa 100644 --- a/packages/legacy-structure/commands/create/package.json +++ b/packages/legacy-structure/commands/create/package.json @@ -117,5 +117,5 @@ "require": "./dist/lib/lerna-module-data.js" } }, - "gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4" + "gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3" } diff --git a/packages/lerna/package.json b/packages/lerna/package.json index b6b69cc5f8..d25d4a5644 100644 --- a/packages/lerna/package.json +++ b/packages/lerna/package.json @@ -124,5 +124,5 @@ "./migrations/**/*": "./dist/migrations/**/*", "./utils": "./dist/utils/index.js" }, - "gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4" + "gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3" }