Skip to content

Commit a33274d

Browse files
authored
fix(ci): fix pnpm intialization for typedoc action (#1462)
1 parent e2ff5d2 commit a33274d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/typedoc-generator.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24-
- uses: actions/setup-node@v4
25-
with:
26-
node-version: ${{ env.NODE_VERSION }}
27-
cache: 'pnpm'
28-
2924
- name: Setup pnpm
3025
uses: pnpm/action-setup@v4
3126
with:
3227
version: 10.4.1
3328

29+
- uses: actions/setup-node@v4
30+
with:
31+
node-version: ${{ env.NODE_VERSION }}
32+
cache: 'pnpm'
33+
3434
- name: Install dependencies
3535
run: pnpm install
3636

@@ -46,4 +46,4 @@ jobs:
4646
token: ${{ secrets.GITHUB_TOKEN }}
4747
branch: gh-pages
4848
folder: ${{ env.DESTINATION_FOLDER }}
49-
clean: true
49+
clean: true

0 commit comments

Comments
 (0)