From 14b31b589b623a446793d5029d32086360a873d6 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:31:57 +0000 Subject: [PATCH 1/7] feat: Updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ae4d65493a..c3fa69fb3e6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Deriv.com - An online trading platform that offers a wide selection of derivatives to trade on 24/7. -![GitHub Workflow Status](https://img.shields.io/github/workflow/status/binary-com/deriv-com/Release%20Staging) ![node](https://img.shields.io/badge/node-%3E%3D18.12.1-blue.svg) ![npm](https://img.shields.io/badge/npm-%3E%3D8.19.2-blue.svg) [![GATSBY](https://img.shields.io/badge/Gatsby-663399?style=flat&logo=gatsby&logoColor=white)](https://github.com/styled-components/styled-components) [![style: styled-components](https://img.shields.io/badge/style-%F0%9F%92%85%20styled--components-orange.svg?colorB=daa357&colorA=db748e)](https://github.com/styled-components/styled-components) ![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) +![GitHub Workflow Status](https://img.shields.io/github/workflow/status/binary-com/deriv-com/Release%20Staging) ![node](https://img.shields.io/badge/node-%3E%3D14.17.0-blue.svg) ![npm](https://img.shields.io/badge/npm-%3E%3D7.24.0-blue.svg) [![GATSBY](https://img.shields.io/badge/Gatsby-663399?style=flat&logo=gatsby&logoColor=white)](https://github.com/styled-components/styled-components) [![style: styled-components](https://img.shields.io/badge/style-%F0%9F%92%85%20styled--components-orange.svg?colorB=daa357&colorA=db748e)](https://github.com/styled-components/styled-components) ![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) ![Sonar Violations (short format)](https://img.shields.io/sonar/violations/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) ## In this document: From f5cfd1966c280adfcc3678b4a809a637962d8408 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:33:49 +0000 Subject: [PATCH 2/7] feat: Updated src/pages/partners/payment-agent/_wh --- src/pages/partners/payment-agent/_who-can-apply.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/partners/payment-agent/_who-can-apply.tsx b/src/pages/partners/payment-agent/_who-can-apply.tsx index 62f8009e342..40cf2f9428c 100644 --- a/src/pages/partners/payment-agent/_who-can-apply.tsx +++ b/src/pages/partners/payment-agent/_who-can-apply.tsx @@ -12,13 +12,13 @@ import { SecondaryHeader, } from '../affiliate-ib/_who-can-apply' import { Flex } from 'components/containers' -import { Localize } from 'components/localization' +import { Localize } from 'components/localization/index' import { Header, LocalizedLinkText, Timeline } from 'components/elements' import { LinkButton } from 'components/form' import CurrencyExchange from 'images/svg/partners/currency_exchange.svg' import Affiliates from 'images/svg/partners/affiliates.svg' import CommunityManagers from 'images/svg/partners/community-managers.svg' -import Email from 'images/svg/partners/pa-email.svg' +import Email from 'images/svg/partners/pa-email' import Reply from 'images/svg/partners/pa-reply.svg' import Listed from 'images/svg/partners/pa-listed.svg' import device from 'themes/device' From 43c2d761fdf51d29ede1b3ad533bffe6ea0b962d Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:39:37 +0000 Subject: [PATCH 3/7] feat/fix: the commit message --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000000..36b837b733c --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,2 @@ +The contents of the new file. NEVER write comments. All functions and classes will be fully implemented. +When writing unit tests, they will be complete, extensive, and cover ALL edge cases. You will make up data for unit tests. Create mocks when necessary. From 21f426cd036bf64f9ed01751d29eb6942d8a19a1 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:45:07 +0000 Subject: [PATCH 4/7] feat: Updated .github/workflows/main.yml --- .github/workflows/main.yml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 36b837b733c..f22baf869a3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,2 +1,27 @@ -The contents of the new file. NEVER write comments. All functions and classes will be fully implemented. +name: Continuous Integration + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Setup Node.js + uses: actions/setup-node@v1 + with: + node-version: '14.x' + + - name: Install dependencies + run: npm install + + - name: Build the project + run: npm run build When writing unit tests, they will be complete, extensive, and cover ALL edge cases. You will make up data for unit tests. Create mocks when necessary. From c859d04041b5ab9b70cafb9390aa317912915881 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 10:32:22 +0000 Subject: [PATCH 5/7] feat: Updated src/pages/partners/payment-agent/_wh --- src/pages/partners/payment-agent/_who-can-apply.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/partners/payment-agent/_who-can-apply.tsx b/src/pages/partners/payment-agent/_who-can-apply.tsx index 40cf2f9428c..1d71e9189a6 100644 --- a/src/pages/partners/payment-agent/_who-can-apply.tsx +++ b/src/pages/partners/payment-agent/_who-can-apply.tsx @@ -18,7 +18,7 @@ import { LinkButton } from 'components/form' import CurrencyExchange from 'images/svg/partners/currency_exchange.svg' import Affiliates from 'images/svg/partners/affiliates.svg' import CommunityManagers from 'images/svg/partners/community-managers.svg' -import Email from 'images/svg/partners/pa-email' +import Email from 'images/svg/partners/pa-email.svg' import Reply from 'images/svg/partners/pa-reply.svg' import Listed from 'images/svg/partners/pa-listed.svg' import device from 'themes/device' From ded875998fd553aacf2cd115758ed1c7075c9f85 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 10:33:27 +0000 Subject: [PATCH 6/7] feat: Updated .github/workflows/main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f22baf869a3..46fe53e0ebc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '14.17.0' - name: Install dependencies run: npm install From ad4e21e8b75a141250cba444ec36afff53bbeb0c Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 10:34:34 +0000 Subject: [PATCH 7/7] feat: Updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3fa69fb3e6..0ae4d65493a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Deriv.com - An online trading platform that offers a wide selection of derivatives to trade on 24/7. -![GitHub Workflow Status](https://img.shields.io/github/workflow/status/binary-com/deriv-com/Release%20Staging) ![node](https://img.shields.io/badge/node-%3E%3D14.17.0-blue.svg) ![npm](https://img.shields.io/badge/npm-%3E%3D7.24.0-blue.svg) [![GATSBY](https://img.shields.io/badge/Gatsby-663399?style=flat&logo=gatsby&logoColor=white)](https://github.com/styled-components/styled-components) [![style: styled-components](https://img.shields.io/badge/style-%F0%9F%92%85%20styled--components-orange.svg?colorB=daa357&colorA=db748e)](https://github.com/styled-components/styled-components) ![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) +![GitHub Workflow Status](https://img.shields.io/github/workflow/status/binary-com/deriv-com/Release%20Staging) ![node](https://img.shields.io/badge/node-%3E%3D18.12.1-blue.svg) ![npm](https://img.shields.io/badge/npm-%3E%3D8.19.2-blue.svg) [![GATSBY](https://img.shields.io/badge/Gatsby-663399?style=flat&logo=gatsby&logoColor=white)](https://github.com/styled-components/styled-components) [![style: styled-components](https://img.shields.io/badge/style-%F0%9F%92%85%20styled--components-orange.svg?colorB=daa357&colorA=db748e)](https://github.com/styled-components/styled-components) ![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) ![Sonar Violations (short format)](https://img.shields.io/sonar/violations/binary-com_deriv-com?server=https%3A%2F%2Fsonarcloud.io) ## In this document: