Skip to content

Commit

Permalink
add circleci configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Apr 24, 2018
1 parent c099757 commit e2d0f40
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,7 @@
version: 2
jobs:
build:
machine: true
steps:
- checkout
- run: docker build .
1 change: 1 addition & 0 deletions .dockerignore
@@ -0,0 +1 @@
/node_modules/
6 changes: 6 additions & 0 deletions Dockerfile
@@ -0,0 +1,6 @@
FROM mhart/alpine-node:9.11.1
WORKDIR /src
COPY package.json ./
RUN yarn
COPY . ./
RUN yarn test

0 comments on commit e2d0f40

Please sign in to comment.