We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b08ccb commit 77793f7Copy full SHA for 77793f7
.github/workflows/nextjs.yml
@@ -53,14 +53,14 @@ jobs:
53
echo "Unable to determine package manager"
54
exit 1
55
fi
56
+ - name: Install pnpm
57
+ if: steps.detect-package-manager.outputs.manager == 'pnpm'
58
+ run: npm install -g pnpm
59
- name: Setup Node
60
uses: actions/setup-node@v4
61
with:
62
node-version: "20"
63
cache: ${{ steps.detect-package-manager.outputs.manager }}
- - name: Install pnpm # Add this step to install pnpm
- if: steps.detect-package-manager.outputs.manager == 'pnpm'
- run: npm install -g pnpm
64
- name: Setup Pages
65
uses: actions/configure-pages@v5
66
0 commit comments