fix(repo): add missing git config on nightly for lerna e2e (#15900)
This commit is contained in:
parent
597832e88f
commit
eec6041220
5
.github/workflows/e2e-matrix.yml
vendored
5
.github/workflows/e2e-matrix.yml
vendored
@ -230,6 +230,11 @@ jobs:
|
|||||||
HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
|
HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
|
||||||
xcrun simctl shutdown all && xcrun simctl erase all
|
xcrun simctl shutdown all && xcrun simctl erase all
|
||||||
|
|
||||||
|
- name: Configure git metadata (needed for lerna smoke tests)
|
||||||
|
run: |
|
||||||
|
git config --global user.email test@test.com
|
||||||
|
git config --global user.name "Test Test"
|
||||||
|
|
||||||
- name: Run e2e tests
|
- name: Run e2e tests
|
||||||
id: e2e-run
|
id: e2e-run
|
||||||
run: yarn nx run-many --target=e2e --projects="${{ join(matrix.project) }}" --parallel=1
|
run: yarn nx run-many --target=e2e --projects="${{ join(matrix.project) }}" --parallel=1
|
||||||
|
|||||||
5
.github/workflows/e2e-windows.yml
vendored
5
.github/workflows/e2e-windows.yml
vendored
@ -155,6 +155,11 @@ jobs:
|
|||||||
if: steps.cache-modules.outputs.cache-hit != 'true'
|
if: steps.cache-modules.outputs.cache-hit != 'true'
|
||||||
run: yarn install --prefer-offline --frozen-lockfile --non-interactive
|
run: yarn install --prefer-offline --frozen-lockfile --non-interactive
|
||||||
|
|
||||||
|
- name: Configure git metadata (needed for lerna smoke tests)
|
||||||
|
run: |
|
||||||
|
git config --global user.email test@test.com
|
||||||
|
git config --global user.name "Test Test"
|
||||||
|
|
||||||
- name: Run e2e tests
|
- name: Run e2e tests
|
||||||
id: e2e-run
|
id: e2e-run
|
||||||
run: yarn nx run-many --target=e2e --projects="${{ join(matrix.project) }}" --parallel=1
|
run: yarn nx run-many --target=e2e --projects="${{ join(matrix.project) }}" --parallel=1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user