Add circleci config

This commit is contained in:
microshine 2019-01-25 15:54:49 +03:00
parent 7f12d459ca
commit cac4b084b9
1 changed files with 26 additions and 0 deletions

26
.circleci/config.yaml Normal file
View File

@ -0,0 +1,26 @@
version: 2
jobs:
build:
working_directory: ~/mern-starter # directory where steps will run
docker: # run the steps with Docker
- image: circleci/node:10.15.0
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
- restore_cache: # special step to restore the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-deps
command: npm install
- save_cache: # special step to save the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run: # run tests with code coverage
name: test-code-coverage
command: npm run coverage
- run: # run coveralls report
name: test-report-coveralls
command: npm run coveralls