Skip to content

Commit c5a8b09

Browse files
authored
Add typedoc (#218)
* Run npm update * Add typedoc
1 parent bd335d9 commit c5a8b09

File tree

6 files changed

+303
-157
lines changed

6 files changed

+303
-157
lines changed

.github/workflows/check.yml

+11
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,14 @@ jobs:
102102
node_version: ${{ matrix.node }}
103103
- name: Typecheck
104104
run: npm run typecheck
105+
docs:
106+
name: Docs
107+
runs-on: ubuntu-latest
108+
timeout-minutes: 30
109+
steps:
110+
- name: Checkout
111+
uses: actions/checkout@v3
112+
- name: Setup
113+
uses: ./.github/actions/setup
114+
- name: Build docs
115+
run: npm run docs:build

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
!src/**/*.d.ts
1313

1414
# Build directories
15+
docs
1516
package
1617

1718
# Environment versions file

0 commit comments

Comments
 (0)