From 2f02de401c1ad8c17966a904e61c567b78b22f2f Mon Sep 17 00:00:00 2001 From: Sandeep Date: Wed, 24 Jul 2024 14:06:32 +0800 Subject: [PATCH 1/2] chore: :fire: added comment on init chart ws instance --- src/external/bot-skeleton/services/api/chart-api.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/external/bot-skeleton/services/api/chart-api.js b/src/external/bot-skeleton/services/api/chart-api.js index 15aadc79..44996807 100644 --- a/src/external/bot-skeleton/services/api/chart-api.js +++ b/src/external/bot-skeleton/services/api/chart-api.js @@ -9,6 +9,9 @@ class ChartAPI { await this.api.authorize(getToken().token); } this.getTime(); + + // eslint-disable-next-line no-console + console.info('Initializing chart API'); }; getTime() { From 2d8f8921a8aaa3e2d2e0107a434fbbb801896c10 Mon Sep 17 00:00:00 2001 From: Sandeep Date: Wed, 24 Jul 2024 14:20:27 +0800 Subject: [PATCH 2/2] chore: fixing the gh action test deployment --- .github/workflows/build-and-deploy-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-deploy-test.yml b/.github/workflows/build-and-deploy-test.yml index ab9b6caf..a69b17ed 100644 --- a/.github/workflows/build-and-deploy-test.yml +++ b/.github/workflows/build-and-deploy-test.yml @@ -20,6 +20,8 @@ jobs: build_to_cloudflare_pages: timeout-minutes: 30 runs-on: ubuntu-latest + outputs: + preview_url: ${{ steps.publish-to-pages.outputs.preview_url }} steps: - name: Verify user uses: 'deriv-com/shared-actions/.github/actions/verify_user_in_organization@v1'