We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b15780 commit d768ff5Copy full SHA for d768ff5
1 file changed
.github/workflows/docs.yml
@@ -23,12 +23,14 @@ jobs:
23
- name: Checkout code
24
uses: actions/checkout@v3
25
26
+ # Setup pnpm
27
- name: Setup pnpm
28
uses: pnpm/action-setup@v4
29
with:
30
version: latest
31
- - name: Setup Node
32
+ # Setup Node + Cache (auf Basis pnpm-lock.yaml)
33
+ - name: Setup Node.js
34
uses: actions/setup-node@v4
35
36
node-version: '20'
@@ -38,8 +40,9 @@ jobs:
38
40
env:
39
41
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42
INTERNAL_PASSWORD: ${{ secrets.INTERNAL_PASSWORD }}
- run: pnpm install
43
+ run: pnpm install --frozen-lockfile
44
45
+ # TSDoc läuft unabhängig von pnpm
46
- name: Generate TSDoc
47
uses: erikyo/tsdoc-action@v1
48
0 commit comments