Skip to content

Commit

Permalink
fix(repo): run nightly e2e with pnpm (#16602)
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav authored Apr 27, 2023
1 parent 19e34df commit 0947eb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
if: ${{ matrix.os == 'macos-latest' }}
uses: actions/cache@v3
with:
lookup-only: true
path: ${{ steps.homebrew-cache-dir-path.outputs.dir }}
key: brew-${{ matrix.node_version }}
restore-keys: |
Expand Down Expand Up @@ -401,7 +402,7 @@ jobs:
- name: Run e2e tests
id: e2e-run
run: yarn nx run-many -t e2e,e2e-macos -p ${{ matrix.project }}
run: pnpm nx run-many -t e2e,e2e-macos -p ${{ matrix.project }}
timeout-minutes: ${{ matrix.os_timeout }}
env:
GIT_AUTHOR_EMAIL: [email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
id: cache-modules
uses: actions/cache@v3
with:
lookup-only: true
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ matrix.node_version }}-${{ github.run_id }}

Expand All @@ -67,7 +68,6 @@ jobs:
needs: preinstall
permissions:
contents: read

runs-on: windows-latest
strategy:
matrix:
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
- name: Run e2e tests
id: e2e-run
run: yarn nx run ${{ matrix.project }}:e2e
run: pnpm nx run ${{ matrix.project }}:e2e
timeout-minutes: 120
env:
GIT_AUTHOR_EMAIL: [email protected]
Expand Down

0 comments on commit 0947eb4

Please sign in to comment.