Skip to content

Commit

Permalink
chore(circleci): config
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejrybaniec committed Dec 3, 2019
1 parent 479a789 commit eb84083
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,18 @@ jobs:
- image: 'circleci/node:latest'
steps:
- checkout
- restore_cache:
key: npm-deps-{{ arch }}-{{ .Branch }}-{{ checksum "package-lock.json" }}
- run:
name: Install dependencies
command: npm install
- save_cache:
key: npm-deps-{{ arch }}-{{ .Branch }}-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- run:
name: Circular dependencies
name: Lint
command: npm run lint
- run:
name: Detect circular dependencies
command: npm run circular

0 comments on commit eb84083

Please sign in to comment.