Skip to content

Commit 77793f7

Browse files
Feature/pipeline (#9)
* fix pnpm installation.
1 parent 1b08ccb commit 77793f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nextjs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ jobs:
5353
echo "Unable to determine package manager"
5454
exit 1
5555
fi
56+
- name: Install pnpm
57+
if: steps.detect-package-manager.outputs.manager == 'pnpm'
58+
run: npm install -g pnpm
5659
- name: Setup Node
5760
uses: actions/setup-node@v4
5861
with:
5962
node-version: "20"
6063
cache: ${{ steps.detect-package-manager.outputs.manager }}
61-
- name: Install pnpm # Add this step to install pnpm
62-
if: steps.detect-package-manager.outputs.manager == 'pnpm'
63-
run: npm install -g pnpm
6464
- name: Setup Pages
6565
uses: actions/configure-pages@v5
6666
with:

0 commit comments

Comments
 (0)