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 266dfa2 commit 4f3fe94
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -57,5 +71,6 @@ workflows:
version: 2
everything:
jobs:
- build
- storage
- cli

0 comments on commit 4f3fe94

Please sign in to comment.