Skip to content

Commit

Permalink
Added build step in circle CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nveenjain committed Jun 21, 2019
1 parent caff9d3 commit fdc8d9f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- setup_remote_docker
- run: npm install
- run:
name: Docker compose up
command: |
set -ex
sudo -E docker-compose up -d
curl localhost:3000
storage:
docker:
- image: circleci/node:latest
Expand Down Expand Up @@ -57,5 +70,6 @@ workflows:
version: 2
everything:
jobs:
- build
- storage
- cli

0 comments on commit fdc8d9f

Please sign in to comment.