diff --git a/.circleci/config.yml b/.circleci/config.yml index 627da658..071ed44f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,5 +1,19 @@ version: 2 jobs: + build: + docker: + - image: circleci/node:latest + steps: + - checkout + - setup_remote_docker + - run: cd $CIRCLE_WORKING_DIRECTORY && npm install + - run: + name: Docker compose up + command: | + set -ex + cd $CIRCLE_WORKING_DIRECTORY + docker-compose up -d + curl localhost:3000 storage: docker: - image: circleci/node:latest @@ -57,5 +71,6 @@ workflows: version: 2 everything: jobs: + - build - storage - cli