We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 595099d commit cc879b4Copy full SHA for cc879b4
.github/workflows/nextjs.yml
@@ -23,23 +23,23 @@ jobs:
23
matrix:
24
node-version: [20]
25
steps:
26
- # 1. Checkout the repository
+ # Checkout the repository
27
- name: Checkout Repository
28
uses: actions/checkout@v4
29
30
- # 2. Setup Node.js
+ # Install pnpm
31
+ - name: Install pnpm
32
+ uses: pnpm/action-setup@v4
33
+ with:
34
+ version: 10
35
+
36
+ # Setup Node.js
37
- name: Use Node.js ${{ matrix.node-version }}
38
uses: actions/setup-node@v4
39
with:
40
node-version: ${{ matrix.node-version }}
41
cache: "pnpm"
42
- # 3. Setup pnpm
- - name: Setup pnpm
- uses: pnpm/action-setup@v4
- with:
- version: 10 # Specify the desired pnpm version
-
43
# 4. Restore Cache
44
- name: Restore Cache
45
uses: actions/cache@v4
0 commit comments