From 9aaec91efda11ba5440464a5ea44ad76fba8976c Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 15:56:41 +0100 Subject: [PATCH] fix indent --- .circleci/config.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b2de8dd..099173d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -50,21 +50,21 @@ jobs: POSTGRES_DB: psdb POSTGRES_PASSWORD: psqlpwd steps: - - restore_cache: - name: restore yarn package cache - key: yarn-packages-v2{{ checksum "yarn.lock" }} - - run: - command: yarn test:e2e - environment: - DATABASE_URL: postgres://psqluser@localhost:5432/psdb - API_PORT: 3000 - API_HOST: localhost - API_PROTOCOL: http + - restore_cache: + name: restore yarn package cache + key: yarn-packages-v2{{ checksum "yarn.lock" }} + - run: + command: yarn test:e2e + environment: + DATABASE_URL: postgres://psqluser@localhost:5432/psdb + API_PORT: 3000 + API_HOST: localhost + API_PROTOCOL: http - save_cache: - name: save yarn package cache - key: yarn-packages-v2{{ checksum "yarn.lock" }} - paths: - - ./node_modules + name: save yarn package cache + key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules workflows: build_and_test: jobs: