diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-05-03 02:05:39 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-05-03 03:01:03 +0800 |
commit | 65253e114f5aeb2a801925a988ff301e5af956d2 (patch) | |
tree | 59f8af217d86614b6e4186947f60c26b1e258468 /.circleci | |
parent | 0416b37ee49684c4d7052a79e556179e8690b847 (diff) | |
download | tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar.gz tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar.bz2 tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar.lz tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar.xz tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.tar.zst tangerine-wallet-browser-65253e114f5aeb2a801925a988ff301e5af956d2.zip |
Adds nsp check to CircleCI tests
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ed731225..88a611af3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,6 +15,9 @@ workflows: - test-lint: requires: - prep-deps-npm + - test-deps: + requires: + - prep-deps-npm - test-e2e: requires: - prep-deps-npm @@ -43,6 +46,7 @@ workflows: - all-tests-pass: requires: - test-lint + - test-deps - test-unit - test-e2e - test-integration-mascara-chrome @@ -145,6 +149,17 @@ jobs: name: Test command: npm run lint + test-deps: + docker: + - image: circleci/node:8-browsers + steps: + - checkout + - restore_cache: + key: dependency-cache-{{ .Revision }} + - run: + name: Test + command: npx nsp check + test-e2e: docker: - image: circleci/node:8-browsers |