Browse Source

adding cache to db

pull/2/head
Neel Coffin 6 years ago
parent
commit
980ed2963b
  1. 8
      .circleci/config.yml

8
.circleci/config.yml

@ -51,6 +51,9 @@ jobs:
POSTGRES_DB: psdb
steps:
- checkout
- restore_cache:
name: restore yarn package cache
key: yarn-packages-v2{{ checksum "yarn.lock" }}
- run:
command: yarn test:e2e
environment:
@ -58,6 +61,11 @@ jobs:
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
workflows:
build_and_test:
jobs:

Loading…
Cancel
Save