Yield generated for d78b96ed-a0e5-437c-b298-8c439e1a2523
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

50 lines
1.2 KiB

version: 2.1
workflows:
version: 2
build_docker:
jobs:
- deploy_node
build_bdd:
jobs:
- deploy_bdd
jobs:
deploy_node:
docker:
- image: circleci/node:14 # the primary container, where your job's commands are run
environment:
DATABASEURL: postgres://psqluser:psqlpassword@localhost:5432/psdb
JWT_SECRET: secret
API_PORT: 3000
API_HOST: localhost
API_PROTOCOL: http
steps:
- checkout
- restore_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
- run:
name: install node
command: yarn global add node-gyp && yarn install
- save_cache:
key: yarn-packages-{{checksum "yarn.lock"}}
paths:
- ./node_module
deploy_bdd:
docker:
- image: 'circleci/postgres:9.6.2-alpine'
environment:
POSTGRE_USER: psqluser
POSTGRE_PASSWORD: psqlpassword
POSTGRE_DB: psdb
steps:
- checkout
- restore_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
- save_cache:
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ./node_modules
- run: yarn test:e2e