From c6001e9b68adc5e428b4231d9864625c6e05ab32 Mon Sep 17 00:00:00 2001 From: Alvin Huang <17609145+alvin-huang@users.noreply.github.com> Date: Tue, 6 Oct 2020 15:58:12 -0400 Subject: [PATCH] add ui test-node (#8820) --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 651327d87d..417610f18b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -659,6 +659,21 @@ jobs: fi - run: *notify-slack-failure + # run node tests + node-tests: + docker: + - image: *EMBER_IMAGE + steps: + - checkout + - restore_cache: + key: *YARN_CACHE_KEY + - attach_workspace: + at: ui-v2 + - run: + working_directory: ui-v2 + command: make test-node + - run: *notify-slack-failure + # run ember frontend tests ember-test-oss: docker: @@ -930,6 +945,9 @@ workflows: - master - ui-staging - /^ui\/.*/ + - node-tests: + requires: + - frontend-cache - ember-build-oss: requires: - frontend-cache