Skip to content

Commit

Permalink
feat: add mdv checking to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeRalphson committed Feb 20, 2019
1 parent df48338 commit 7f217ff
Show file tree
Hide file tree
Showing 4 changed files with 819 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,18 @@ jobs:
- image: circleci/node:10.11.0
steps:
- checkout
- run: echo "let the awesome begin"
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Update npm
command: 'sudo npm install -g npm@latest'
- run:
name: Install npm dependencies
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Tests
command: npm test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
./build
./**/build
node_modules/
Loading

0 comments on commit 7f217ff

Please sign in to comment.