Skip to content

Commit 82e96a3

Browse files
committed
Update GitHub Actions workflow to reintroduce Node.js setup step
- Added the Node.js setup step back into the documentation deployment workflow for consistency. - Ensured caching for pnpm is maintained to optimize dependency installation.
1 parent fe47e9d commit 82e96a3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828

29-
- uses: actions/setup-node@v4
30-
with:
31-
node-version: 20
32-
cache: 'pnpm'
33-
3429
- name: Setup pnpm
3530
uses: pnpm/action-setup@v3
3631
with:
3732
version: 9.0.0
3833

34+
- uses: actions/setup-node@v4
35+
with:
36+
node-version: 20
37+
cache: 'pnpm'
38+
3939
- name: Install dependencies
4040
run: pnpm install --frozen-lockfile
4141

0 commit comments

Comments
 (0)