Skip to content

Commit

Permalink
Merge pull request #2 from joshbuddy/move-to-circle
Browse files Browse the repository at this point in the history
Migrate to circle
  • Loading branch information
joshbuddy committed Apr 25, 2019
2 parents 81b64f1 + 070e4b8 commit c23f46e
Show file tree
Hide file tree
Showing 4 changed files with 2,627 additions and 811 deletions.
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
build:
working_directory: ~/repo
docker:
- image: circleci/node
- image: mongo:3.4.4
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@5'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install dependencies
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit c23f46e

Please sign in to comment.