File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,25 @@ jobs:
10
10
deploy :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - name : Checkout code
14
- uses : actions/checkout@v2
13
+ - uses : actions/checkout@v2
14
+ - uses : actions/setup-node@v4
15
+ with :
16
+ node-version : 20
17
+ - uses : pnpm/action-setup@v4.0.0
18
+ with :
19
+ version : latest
20
+ run_install : true
15
21
16
22
- name : Install doc theme
17
- run : npm i -g typedoc-github-theme
23
+ run : pnpm i -g typedoc-github-theme
24
+
18
25
- name : Build
19
26
uses : erikyo/tsdoc-action@v1
20
27
with :
21
28
source_dir : ./packages/react-user-media/*
22
29
output_dir : ./docs_out
23
30
theme : typedoc-github-theme
24
- tsconfig : ./packages/react-user-media/tsconfig.lib.json
31
+ tsconfig_file : ./packages/react-user-media/tsconfig.lib.json
25
32
front_page : ./packages/react-user-media/README.md
26
33
27
34
- name : Deploy
Original file line number Diff line number Diff line change @@ -25,4 +25,8 @@ dist-ssr
25
25
26
26
# vitest
27
27
__screenshots__
28
- coverage
28
+ coverage
29
+
30
+ # docs
31
+
32
+ docs_out
You can’t perform that action at this time.
0 commit comments