Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(deps): update examples to pnpm 9 #1169

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/example-basic-pnpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/example-start-and-pnpm-workspaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

# pnpm is not installed by default on GitHub runners
- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

# locate the pnpm store directory where pnpm dependencies are installed
- name: Get pnpm store directory
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9

- name: Get pnpm store directory
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
run: npm install -g pnpm@8
run: npm install -g pnpm@9
- name: Get pnpm store directory
shell: bash
run: |
Expand Down
Loading