add ui test-node (#8820)

This commit is contained in:
Alvin Huang 2020-10-06 15:58:12 -04:00 committed by GitHub
parent a2a8e9c783
commit c6001e9b68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -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