From 894aa1edb75c3bf11b09c98415265cc0709d5379 Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Mon, 2 Nov 2020 18:57:20 +0100 Subject: [PATCH] test --- .circleci/config.yml | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d08ceb4..cddcdb5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -14,31 +14,19 @@ jobs: - npm-v1-dependencies-{{ checksum "yarn.lock" }} lint: - docker: *shared_docker - steps: - - checkout # check out the code in the project directory - - run: yarn global add node-gyp && yarn install - - restore_cache: - keys: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - - run: yarn lint && yarn format:check + - run: yarn lint && yarn format:check test: - docker: *shared_docker - steps: - - checkout # check out the code in the project directory - - run: yarn global add node-gyp && yarn install - - restore_cache: - keys: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - - run: yarn test:ci + - run: yarn test:ci workflows: version: 2 build_test: jobs: - build - - lint - - test + - lint: + requires: + - build + - test: + requires: + - build