Skip to content

Commit d768ff5

Browse files
author
xyzjesper
committed
Fix Docs Generation
1 parent 4b15780 commit d768ff5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ jobs:
2323
- name: Checkout code
2424
uses: actions/checkout@v3
2525

26+
# Setup pnpm
2627
- name: Setup pnpm
2728
uses: pnpm/action-setup@v4
2829
with:
2930
version: latest
3031

31-
- name: Setup Node
32+
# Setup Node + Cache (auf Basis pnpm-lock.yaml)
33+
- name: Setup Node.js
3234
uses: actions/setup-node@v4
3335
with:
3436
node-version: '20'
@@ -38,8 +40,9 @@ jobs:
3840
env:
3941
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4042
INTERNAL_PASSWORD: ${{ secrets.INTERNAL_PASSWORD }}
41-
run: pnpm install
43+
run: pnpm install --frozen-lockfile
4244

45+
# TSDoc läuft unabhängig von pnpm
4346
- name: Generate TSDoc
4447
uses: erikyo/tsdoc-action@v1
4548
with:

0 commit comments

Comments
 (0)