From 88a01bbfd0631c021b4504565adcfb35d27caa99 Mon Sep 17 00:00:00 2001 From: Dimitrie Stefanescu Date: Sun, 3 Jan 2021 14:49:28 +0200 Subject: [PATCH] yml sucks --- .circleci/config.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c16cfe441..e82ac067a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,14 +26,13 @@ jobs: CANONICAL_URL: 'http://localhost:3000' steps: - checkout - - restore_cache: - key: 'deps-{{ checksum "package.json" }}' - - run: 'npm install' - - run: 'lerna boostrap' - - save_cache: - paths: - - node_modules - key: 'deps-{{ checksum "package.json" }}' + - run: + command: 'npm install' + working_directory: 'packages/server' - run: 'dockerize -wait tcp://localhost:5432 -timeout 1m' - - run: 'lerna run test --stream' - - run: 'bash <(curl -s https://codecov.io/bash) -s ~/project/packages/server/coverage' + - run: + command: 'npm run test' + working_directory: 'packages/server' + - run: + command: 'bash <(curl -s https://codecov.io/bash)' + working_directory: 'packages/server'