From a7026eb86010c9133d95d9c5d20e5928a844ede1 Mon Sep 17 00:00:00 2001 From: verzelea Date: Tue, 3 Nov 2020 11:56:05 +0100 Subject: [PATCH] Fix: syntaxe v2 --- .circleci/config.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 77d4245..af75b4f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,11 +4,11 @@ workflows: jobs: - build - lint: - requires: - - build + requires: + - build - e2e: - requires: - - build + requires: + - build jobs: build: docker: @@ -16,25 +16,25 @@ jobs: steps: - checkout - restore_cache: - key: yarn-packages-v2{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: - key: yarn-packages-v2{{ checksum "yarn.lock" }} - paths: - - ./node_modules + key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules lint: docker: - image: cimg/node:14.10.1 steps: - checkout - restore_cache: - key: yarn-packages-v2{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} - run: yarn lint && yarn format:check - run: yarn test:ci - save_cache: - key: yarn-packages-v2{{ checksum "yarn.lock" }} - paths: - - ./node_modules + key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules e2e: docker: - image: cimg/node:12.18