Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename jsDoc workflow to tsDoc and update configurations #27

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions .github/workflows/jsDoc.yml → .github/workflows/tsDoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ name: JSDoc Action
on:
release:
branches: [ "master" ]
pull_request:
types: [ closed ]
branches:
- master
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand All @@ -33,14 +29,12 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Build Docs
uses: andstor/jsdoc-action@v1
- name: TypeDoc Action
uses: erikyo/tsdoc-action@v1
with:
source_dir: ./lib
recurse: true
source_dir: ./src/*
output_dir: ./docs
config_file: jsdoc.json
front_page: readme.md
front_page: README.md

- name: Setup Pages
uses: actions/configure-pages@v3
Expand Down