diff --git a/.circleci/config.yml b/.circleci/config.yml index 48cba33..fc28d56 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2 jobs: - build: + build_and_test: docker: - image: circleci/node:dubnium-browsers working_directory: ~/repo @@ -13,7 +13,10 @@ jobs: - dependencies- - run: yarn global add node-gyp && yarn install - run: yarn run build + - run: yarn run test - save_cache: paths: - node_modules - key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }} \ No newline at end of file + key: dependencies-{{ checksum "package.json" }}-{{ .Environment.CACHE_VERSION }} + + \ No newline at end of file