Skip to content

Commit 13c80ae

Browse files
committed
chore: unset GITHUB_ACTIONS environment variable in other node versions workflow
1 parent 9a4ad5e commit 13c80ae

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/other-node-versions.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,10 @@ jobs:
110110
git config --global user.signingkey $GPG_KEY_ID
111111
112112
- name: Run e2e tests for task-runner
113-
run: npx nx prepare-for-e2e e2e-run-task-runner && e2e/run/task-runner/src/run-tests.sh
113+
run: |
114+
# We do not want the automatic Github Actions grouping to be applied to the e2e tests, or the snapshots won't match local
115+
unset GITHUB_ACTIONS
116+
npx nx prepare-for-e2e e2e-run-task-runner && e2e/run/task-runner/src/run-tests.sh
114117
shell: bash
115118
env:
116119
# Silently disable nx cloud for task runner e2e (using NX_NO_CLOUD produces a warning log)

packages/legacy-package-management/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@
9292
"exports": {
9393
".": "./dist/index.js"
9494
},
95-
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
95+
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
9696
}

packages/legacy-structure/commands/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@
117117
"require": "./dist/lib/lerna-module-data.js"
118118
}
119119
},
120-
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
120+
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
121121
}

packages/lerna/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@
124124
"./migrations/**/*": "./dist/migrations/**/*",
125125
"./utils": "./dist/utils/index.js"
126126
},
127-
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
127+
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
128128
}

0 commit comments

Comments
 (0)