From 049a3125b3f86dcb4f2533b2ad8e73fda030b0fb Mon Sep 17 00:00:00 2001 From: Pierre Date: Sat, 16 Jan 2021 12:50:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7yarn=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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