Skip to content

Commit

Permalink
add install pnpm action
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Apr 16, 2024
1 parent 532af97 commit a176f4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/prebuild-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/prebuild-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ jobs:
- 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Install Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prebuild-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ jobs:
- x64
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 8.15.3
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
Expand Down

0 comments on commit a176f4c

Please sign in to comment.