From 91b393eb3534290b628de7baf5409fff3e0b991c Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Wed, 13 Dec 2023 15:00:21 +0100 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 721530a4..3bac0014 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 - + - name: Install dependencies run: npm ci working-directory: ./client @@ -26,6 +26,15 @@ jobs: - name: Create the docs directory locally in CI run: npx typedoc --out ../docs/client @types/*.d.ts src/**/*.ts working-directory: ./client + + - name: Install Doxygen + run: sudo apt-get install doxygen -y + shell: bash + + - name: Generate Doxygen Documentation + run: doxygen docs + shell: bash + working-directory: ./src - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4