From b1e9c242373fb7594fcebfea95059416b99087b2 Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Fri, 7 Oct 2022 13:43:10 +0300 Subject: [PATCH 1/2] Add "Learn" to top navi --- .../shared/components/Header/__snapshots__/index.jsx.snap | 5 +++++ config/default.js | 5 +++++ config/production.js | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap index 57529344d8..4379a704c9 100644 --- a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap +++ b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap @@ -136,6 +136,11 @@ exports[`Default render 1`] = ` "openNewTab": true, "title": "Discord", }, + Object { + "href": "https://platform-ui.topcoder-dev.com/learn", + "openNewTab": true, + "title": "Learn", + }, ], "title": "COMMUNITY", }, diff --git a/config/default.js b/config/default.js index fc8f5da39b..e7058e0ccb 100644 --- a/config/default.js +++ b/config/default.js @@ -410,6 +410,11 @@ module.exports = { href: 'https://discord.gg/topcoder', openNewTab: true, }, + { + title: 'Learn', + href: 'https://platform-ui.topcoder-dev.com/learn', + openNewTab: true, + }, ], }, ], diff --git a/config/production.js b/config/production.js index a97b9b3cb3..528760c7d9 100644 --- a/config/production.js +++ b/config/production.js @@ -194,6 +194,11 @@ module.exports = { href: 'https://discord.gg/topcoder?ref=nav', openNewTab: true, }, + { + title: 'Learn', + href: 'https://platform-ui.topcoder.com/learn', + openNewTab: true, + }, ], }, ], From a429c8adde2f499206b6ac9354754d842c48cd99 Mon Sep 17 00:00:00 2001 From: Kiril Kartunov Date: Fri, 7 Oct 2022 13:43:44 +0300 Subject: [PATCH 2/2] ci: on test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5b87843434..b6134467e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -356,7 +356,7 @@ workflows: filters: branches: only: - - free + - TCA-484 # This is alternate dev env for parallel testing - "build-qa": context : org-global