Browse Source

add ui test-node (#8820)

pull/8839/head
Alvin Huang 4 years ago committed by GitHub
parent
commit
c6001e9b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      .circleci/config.yml

18
.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

Loading…
Cancel
Save