Skip to content

Commit

Permalink
ci: #21.circleci/config.yml 설정파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
738 committed Apr 21, 2019
1 parent d483fe4 commit 19daff6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
jobs:
build:
working_directory: ~/mern-starter
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test
- store_artifacts:
path: test-results.xml
prefix: tests
- store_test_results:
path: test-results.xml

0 comments on commit 19daff6

Please sign in to comment.