This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
2019-01-25 12:54:49 +00:00
|
|
|
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
|
2019-03-02 21:21:34 +00:00
|
|
|
- run: # lint
|
|
|
|
name: lint
|
|
|
|
command: npm run lint
|
2019-01-25 12:54:49 +00:00
|
|
|
- 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
|