Skip to content

Commit

Permalink
chore: restore cache in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 2, 2018
1 parent aa5c62c commit f0ea206
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
working_directory: ~/cli
steps: &multi_steps
- checkout
- restore_cache: *restore_cache
- attach_workspace: {at: node_modules}
- run: .circleci/setup_git
- run: yarn exec nps test.multi
Expand All @@ -18,6 +19,7 @@ jobs:
<<: *test
steps: &base_steps
- checkout
- restore_cache: *restore_cache
- attach_workspace: {at: node_modules}
- run: .circleci/setup_git
- run: yarn exec nps test.base
Expand All @@ -26,6 +28,7 @@ jobs:
<<: *test
steps: &plugin_steps
- checkout
- restore_cache: *restore_cache
- attach_workspace: {at: node_modules}
- run: .circleci/setup_git
- run: yarn exec nps test.plugin
Expand All @@ -34,6 +37,7 @@ jobs:
<<: *test
steps: &single_steps
- checkout
- restore_cache: *restore_cache
- attach_workspace: {at: node_modules}
- run: .circleci/setup_git
- run: yarn exec nps test.single
Expand All @@ -44,6 +48,7 @@ jobs:
- image: node:8
steps: &command_steps
- checkout
- restore_cache: *restore_cache
- attach_workspace: {at: node_modules}
- run: .circleci/setup_git
- run: yarn exec nps test.command
Expand Down

0 comments on commit f0ea206

Please sign in to comment.