From fe1dacff2b8a34e3ee7f5805151f773da7c1ca51 Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 11:47:41 +0100 Subject: [PATCH] adding databas --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 33150bf..2f09ae2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,6 +58,18 @@ jobs: POSTGRES_USER: psqluser POSTGRES_PASSWORD: psqlpassword POSTGRES_DB: psdb + steps: + - checkout + - restore_cache: + name: restore yarn package cache + key: yarn-packages-v2{{ checksum "yarn.lock" }} + - run: yarn test:e2e + - save_cache: + name: save yarn package cache + key: yarn-packages-v2{{ checksum "yarn.lock" }} + paths: + - ./node_modules + workflows: build_and_test: