From bd0aabf9d5554a956b93d1c745cf71c72dbb29f2 Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 12:24:44 +0100 Subject: [PATCH] test retrieve stable build --- .circleci/config.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 59991ad..c869a4b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,6 @@ jobs: - image: cimg/node:14.10.1 steps: - checkout - - restore_cache: name: restore yarn package cache key: yarn-packages-v2{{ checksum "yarn.lock" }} @@ -15,7 +14,6 @@ jobs: key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - ./node_modules - lint: docker: - image: cimg/node:14.10.1 @@ -24,13 +22,12 @@ jobs: - restore_cache: name: restore yarn package cache key: yarn-packages-v2{{ checksum "yarn.lock" }} - - run: yarn lint && yarn format:check + - run: yarn lint && yarn format - save_cache: name: save yarn package cache key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - - ./node_modules - + - ./node_modules unit-test: docker: - image: cimg/node:14.10.1 @@ -45,9 +42,6 @@ jobs: key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - ./node_modules - - - workflows: build_and_test: jobs: @@ -58,3 +52,6 @@ workflows: - lint: requires: - build + + +