Skip to content

Commit 0947eb4

Browse files
authoredApr 27, 2023
fix(repo): run nightly e2e with pnpm (#16602)
1 parent 19e34df commit 0947eb4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎.github/workflows/e2e-matrix.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ jobs:
7070
if: ${{ matrix.os == 'macos-latest' }}
7171
uses: actions/cache@v3
7272
with:
73+
lookup-only: true
7374
path: ${{ steps.homebrew-cache-dir-path.outputs.dir }}
7475
key: brew-${{ matrix.node_version }}
7576
restore-keys: |
@@ -401,7 +402,7 @@ jobs:
401402
402403
- name: Run e2e tests
403404
id: e2e-run
404-
run: yarn nx run-many -t e2e,e2e-macos -p ${{ matrix.project }}
405+
run: pnpm nx run-many -t e2e,e2e-macos -p ${{ matrix.project }}
405406
timeout-minutes: ${{ matrix.os_timeout }}
406407
env:
407408
GIT_AUTHOR_EMAIL: test@test.com

‎.github/workflows/e2e-windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
id: cache-modules
4545
uses: actions/cache@v3
4646
with:
47+
lookup-only: true
4748
path: '**/node_modules'
4849
key: ${{ runner.os }}-modules-${{ matrix.node_version }}-${{ github.run_id }}
4950

@@ -67,7 +68,6 @@ jobs:
6768
needs: preinstall
6869
permissions:
6970
contents: read
70-
7171
runs-on: windows-latest
7272
strategy:
7373
matrix:
@@ -287,7 +287,7 @@ jobs:
287287
288288
- name: Run e2e tests
289289
id: e2e-run
290-
run: yarn nx run ${{ matrix.project }}:e2e
290+
run: pnpm nx run ${{ matrix.project }}:e2e
291291
timeout-minutes: 120
292292
env:
293293
GIT_AUTHOR_EMAIL: test@test.com

0 commit comments

Comments
 (0)
Please sign in to comment.