Skip to content

Commit

Permalink
ci: generate typedoc documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed May 15, 2022
1 parent 07b569b commit caacc3e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docs.yml
@@ -0,0 +1,26 @@
name: Documentation

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install dependencies
run: |
npm i --save-dev
npm run docs
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: docs

0 comments on commit caacc3e

Please sign in to comment.