diff --git a/.circleci/config.yml b/.circleci/config.yml index ff940f6..fff7c76 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,16 +63,14 @@ jobs: - image: circleci/postgres:9.6.2-alpine environment: POSTGRES_USER: psqluer - POSTGRES_DB: psdb - POSTGRES_PASSWORD: test - + POSTGRES_DB: psdb steps: - checkout - restore_cache: key: yarn-packages-v3{{ checksum "yarn.lock" }} - - run: - name: Waiting for POSTGRES - command: dockerize -wait tcp://localhost:5432 -timeout 1m - run: - name: Launching e2e test - command: yarn test:e2e \ No newline at end of file + command: yarn test:e2e + - save_cache: + key: yarn-packages-v3{{ checksum "yarn.lock" }} + paths: + - ./node_modules \ No newline at end of file