Skip to content

Commit 5bf0fdf

Browse files
committed
fix(ci): fix pnpm install on ci
Signed-off-by: Mohamed Elkholy <mkh117@gmail.com>
1 parent 2e994c0 commit 5bf0fdf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ jobs:
1818
- uses: volta-cli/action@v4
1919
with:
2020
token: ${{ secrets.GITHUB_TOKEN }}
21-
- name: Install PNPM
22-
run: volta install pnpm
2321
- name: Project Node Version
2422
run: |
2523
echo "Node version: $(which node):$(node -v)"
2624
echo "NPM version: $(which npm):$(npm -v)"
25+
- name: Install PNPM
26+
run: volta install pnpm
27+
- name: PNPM Version
28+
run: |
2729
echo "PNPM version: $(which pnpm):$(pnpm -v)"
2830
2931
Build:

0 commit comments

Comments
 (0)