Skip to content

Commit e488e15

Browse files
Merge pull request #33 from deriv-com/fix--gh-actions
Fix gh actions
2 parents a6a53ec + 2d8f892 commit e488e15

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/build-and-deploy-test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
build_to_cloudflare_pages:
2121
timeout-minutes: 30
2222
runs-on: ubuntu-latest
23+
outputs:
24+
preview_url: ${{ steps.publish-to-pages.outputs.preview_url }}
2325
steps:
2426
- name: Verify user
2527
uses: 'deriv-com/shared-actions/.github/actions/verify_user_in_organization@v1'

src/external/bot-skeleton/services/api/chart-api.js

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ class ChartAPI {
99
await this.api.authorize(getToken().token);
1010
}
1111
this.getTime();
12+
13+
// eslint-disable-next-line no-console
14+
console.info('Initializing chart API');
1215
};
1316

1417
getTime() {

0 commit comments

Comments
 (0)