Skip to content

Commit

Permalink
docs: add documentation system and more docs (#890)
Browse files Browse the repository at this point in the history
* chore: add typedoc to build documentation

* docs: add more docs

* chore: add docs workflow

* refactor: small improvements

* refactor: improve typings system

* refactor: small types simplification

* build: re-enable skipLibCheck in tsconfig.json

---------

Co-authored-by: Anton Platonov <platosha@gmail.com>
  • Loading branch information
Lodin and platosha authored Oct 15, 2024
1 parent fc5df13 commit ca6359c
Show file tree
Hide file tree
Showing 19 changed files with 1,170 additions and 118 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
},
"plugins": ["tsdoc"],
"rules": {
"@typescript-eslint/no-restricted-types": "off",
"@typescript-eslint/no-invalid-void-type": "off",
"@typescript-eslint/no-useless-template-literals": "off",
"import/no-unassigned-import": "off",
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Publish Docs

on:
push:
branches: ['main']
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: 'pages'
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Use NodeJS LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install
run: npm ci
- name: Build Docs
run: npm run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './.docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage

.idea
.vscode
.docs
Loading

0 comments on commit ca6359c

Please sign in to comment.