node-bunyan-lite/.circleci/config.yml

18 lines
383 B
YAML
Raw Normal View History

2018-07-22 11:39:37 +00:00
version: 2
jobs:
build:
docker:
- image: node:6-alpine
working_directory: ~/mv-lite
steps:
- run:
name: Install SSH & Git
2018-07-22 11:43:18 +00:00
command: apk add --no-cache make bash git openssh
2018-07-22 11:39:37 +00:00
- checkout
- run:
name: Install dependancies
command: npm install
- run:
name: Run tests
command: npm test