From 38711436875797a005662eff3a011ebe3509d999 Mon Sep 17 00:00:00 2001 From: Akash Kumar Date: Fri, 15 Sep 2023 16:55:59 +0530 Subject: [PATCH 1/3] fix: bug (keploy#834) Signed-off-by: Akash Kumar --- docusaurus.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 5f2271ce5..3ec7538c7 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -174,9 +174,6 @@ module.exports = { { type: 'docsVersionDropdown', position: 'right', - dropdownItemsAfter: [{ - to: '/docs/server/linux/installation', - }], dropdownActiveClassDisabled: true, }, { From 3ddf1f148737fae5c49efe909286b24ce5829994 Mon Sep 17 00:00:00 2001 From: Akash Kumar Date: Fri, 15 Sep 2023 18:43:16 +0530 Subject: [PATCH 2/3] fix: deploy PR previews error Signed-off-by: Akash Kumar --- .github/workflows/build_and_check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_check.yml b/.github/workflows/build_and_check.yml index 0eef98310..a9ce4ceb2 100644 --- a/.github/workflows/build_and_check.yml +++ b/.github/workflows/build_and_check.yml @@ -19,7 +19,7 @@ jobs: run: | yarn build - uses: rossjrw/pr-preview-action@v1 - with: - source-dir: build - preview-branch: main - umbrella-dir: docs/pr-preview \ No newline at end of file + with: + source-dir: build + preview-branch: main + umbrella-dir: docs/pr-preview \ No newline at end of file From e96f82c1a89e73eb7a3ca6f5e1bfa32cba9f8963 Mon Sep 17 00:00:00 2001 From: Akash Kumar Date: Fri, 15 Sep 2023 18:59:41 +0530 Subject: [PATCH 3/3] ci: add install dependencies step Signed-off-by: Akash Kumar --- .github/workflows/build_and_check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_and_check.yml b/.github/workflows/build_and_check.yml index a9ce4ceb2..28b95000b 100644 --- a/.github/workflows/build_and_check.yml +++ b/.github/workflows/build_and_check.yml @@ -15,6 +15,8 @@ jobs: - uses: actions/checkout@v3 - name: Install Yarn run: npm install -g yarn + - name: Install dependencies + run: yarn - name: Build lib run: | yarn build