Skip to content

Commit

Permalink
chore: unset GITHUB_ACTIONS environment variable in other node versio…
Browse files Browse the repository at this point in the history
…ns workflow
  • Loading branch information
JamesHenry committed Feb 7, 2024
1 parent 9a4ad5e commit 13c80ae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/other-node-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion packages/legacy-package-management/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@
"exports": {
".": "./dist/index.js"
},
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
}
2 changes: 1 addition & 1 deletion packages/legacy-structure/commands/create/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@
"require": "./dist/lib/lerna-module-data.js"
}
},
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
}
2 changes: 1 addition & 1 deletion packages/lerna/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@
"./migrations/**/*": "./dist/migrations/**/*",
"./utils": "./dist/utils/index.js"
},
"gitHead": "b664840ff8eb39dfb894b7cedc5ae9e186eaa8e4"
"gitHead": "9a4ad5ecd640480faa3011dcf80f6c51c2d756c3"
}

0 comments on commit 13c80ae

Please sign in to comment.