File tree 4 files changed +37
-0
lines changed
4 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy Documentation
2
+
3
+ on :
4
+ release :
5
+ workflow_dispatch :
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-node@v4
13
+ with :
14
+ node-version : lts/*
15
+ - run : npm install
16
+ - run : npm run docs
17
+ - uses : actions/configure-pages@v5
18
+ - uses : actions/upload-pages-artifact@v3
19
+ with :
20
+ path : ' ./docs'
21
+ deploy :
22
+ needs : build
23
+ permissions :
24
+ pages : write
25
+ id-token : write
26
+ environment :
27
+ name : github-pages
28
+ url : ${{ steps.deployment.outputs.page_url }}
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - uses : actions/deploy-pages@v4
32
+ id : deployment
Original file line number Diff line number Diff line change 16
16
- run : npm test
17
17
- run : npm run lint
18
18
- run : npm run type-check
19
+ - run : npm run docs
Original file line number Diff line number Diff line change 1
1
node_modules /
2
2
package-lock.json
3
3
4
+ docs /
5
+
4
6
scratch /
5
7
TODO *
Original file line number Diff line number Diff line change 31
31
"test" : " vitest --watch=false" ,
32
32
"coverage" : " vitest run --coverage" ,
33
33
"type-check" : " tsc --noEmit" ,
34
+ "docs" : " typedoc" ,
34
35
"prepack" : " tsc --project tsconfig.build.json" ,
35
36
"postpack" : " node ./bin/postpack.js"
36
37
},
44
45
"@typescript-eslint/parser" : " *" ,
45
46
"eslint-import-resolver-typescript" : " *" ,
46
47
"eslint-plugin-import" : " *" ,
48
+ "typedoc" : " ^0.27.6" ,
47
49
"typescript-eslint" : " *" ,
48
50
"undici" : " ^7.3.0" ,
49
51
"vitest" : " *"
You can’t perform that action at this time.
0 commit comments