From d82868f45d6b8ee1802c94444e5aceb0ebeac0c6 Mon Sep 17 00:00:00 2001 From: RadioMediocre Date: Fri, 10 May 2024 14:45:17 -0700 Subject: [PATCH 1/2] Update .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b7ff13a2..ee10fbfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.DS_STORE \ No newline at end of file +.DS_STORE +node_modules \ No newline at end of file From faa6686ebc4738769817f0acdc2cfc0f1cd0133d Mon Sep 17 00:00:00 2001 From: Christopher Edwards <66543275+chedwards492@users.noreply.github.com> Date: Fri, 10 May 2024 14:48:21 -0700 Subject: [PATCH 2/2] Create jsdocs.yml --- .github/workflows/jsdocs.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/jsdocs.yml diff --git a/.github/workflows/jsdocs.yml b/.github/workflows/jsdocs.yml new file mode 100644 index 00000000..f27f755a --- /dev/null +++ b/.github/workflows/jsdocs.yml @@ -0,0 +1,12 @@ +name: JSDoc Generation +on: push +jobs: + gen-docs: + runs-on: ubuntu-latest + steps: + - name: Build + - uses: andstor/jsdoc-action@v1.2.1 + - uses: actions/checkout@v4 + with: + source_dir: ./source/homepage + recurse: true