Skip to content

Commit

Permalink
Revert circle config
Browse files Browse the repository at this point in the history
  • Loading branch information
Stu committed Nov 11, 2018
1 parent 7621769 commit 093315a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .circleci/config.yml
Expand Up @@ -45,9 +45,16 @@ jobs:
- image: circleci/node:9.4.0
working_directory: ~/repo
steps:
- attach_workspace:
# Must be absolute path or relative path from working_directory
at: ~/repo
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: npm install
- run:
name: Test
command: npm run test
Expand Down

0 comments on commit 093315a

Please sign in to comment.