A GitHub action which automatically generates documentation for your express APIs.
💡 Introduction
This action automatically scans for express APIs in your codebase and generates a documentation website
How to add to your workflow ❔
To add this action to your workflow simply modify your workflows main.yml file.
# This is a basic workflow to help you get started with Express AutoDocs Actionname: Express AutoDocs.# This specifies when the action should occuronpushbranches: [master]jobs:
generate_docs_job:
runs-on: ubuntu-latestname: Generating Docssteps:
# this step checks out the master branch of your repo using checkout action.
- name: Checks out the repositoryid: checksout-repositoryuses: actions/checkout@v2with:
repository: ""# this step generates the docs
- name: Generating Docs.id: reading-fileuses: Pika1998/express-autodocs@v0.0.1# Use the output from the `hello` step
- name: Get the output timerun
Great article, I would like to share a GitHub action which I created
A GitHub action which automatically generates documentation for your express APIs.
This action automatically scans for express APIs in your codebase and generates a documentation website
How to add to your workflow❔
To add this action to your workflow simply modify your workflows main.yml file.
This action scans for express APIs and generates automatic documentation using them, I feel it would add more value to this article :)
Sure, if it helps other developers with the combined documentation, then I have no issues.