test: added test with extension to redirects #195
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate TypeScript Documentation | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
swagger-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Instantiate package | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn install | |
- name: Generate typedoc | |
run: yarn docs:build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
publish_dir: docs |