From ca9b08edaf27c3f8453b1be171ded206c6a1eb29 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Sun, 5 May 2024 21:18:29 +0200 Subject: [PATCH] Update website-bot-update.yml --- .github/workflows/website-bot-update.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website-bot-update.yml b/.github/workflows/website-bot-update.yml index 9e755d3..d58f7c1 100644 --- a/.github/workflows/website-bot-update.yml +++ b/.github/workflows/website-bot-update.yml @@ -18,6 +18,13 @@ jobs: node-version: '20.x' - name: Install dependencies run: yarn --frozen-lockfile + - name: Clone handler repo & install deps + run: | + git clone https://github.com/sern-handler/handler.git ../sernHandlerV2 + cd ../sernHandlerV2 + yarn --inmutable + yarn build:dev + cd ${{ github.workspace }} - name: Move docusaurus config files run: | mv ./docusaurus.config.js ./original.docusaurus.config.js @@ -45,13 +52,15 @@ jobs: uses: actions/setup-node@v3 with: node-version: '20.x' + - name: Install typedoc + run: yarn global add typedoc - name: Install dependencies run: yarn --frozen-lockfile - name: Clone handler repo & install deps run: | git clone https://github.com/sern-handler/handler.git ../sernHandlerV2 cd ../sernHandlerV2 - yarn --frozen-lockfile + yarn --inmutable yarn build:dev cd ${{ github.workspace }} - name: Generate API docs