diff options
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 31a58a963..d4ffe62ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,6 +27,16 @@ jobs: key: repo-{{ .Environment.CIRCLE_SHA1 }} paths: - ~/repo + test-installation: + docker: + - image: circleci/node:6.12 + working_directory: ~/repo + steps: + - restore_cache: + keys: + - repo-{{ .Environment.CIRCLE_SHA1 }} + - run: yarn lerna:exec 'yarn pack --filename package.tgz' + - run: yarn test:installation test-0xjs: docker: - image: circleci/node:6.12 @@ -174,6 +184,9 @@ workflows: main: jobs: - build + - test-installation: + requires: + - build - test-0xjs: requires: - build |