From 52faf2c34c89cd7998c422c2f07471dc2fc412b4 Mon Sep 17 00:00:00 2001 From: Jacob Byers Date: Tue, 29 Jan 2019 11:55:36 -0700 Subject: [PATCH] Changed order of steps (#7503) Merge pull request 7503 --- docs/_docs/continuous-integration/circleci.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/_docs/continuous-integration/circleci.md b/docs/_docs/continuous-integration/circleci.md index 402ebd18..8d18c08c 100644 --- a/docs/_docs/continuous-integration/circleci.md +++ b/docs/_docs/continuous-integration/circleci.md @@ -105,6 +105,13 @@ jobs: - run: name: Bundle Install command: bundle check || bundle install + - save_cache: + key: rubygems-v1-{% raw %}{{ checksum "Gemfile.lock" }}{% endraw %} + paths: + - vendor/bundle + - run: + name: Jekyll build + command: bundle exec jekyll build - run: name: HTMLProofer tests command: | @@ -113,13 +120,6 @@ jobs: --check-favicon \ --check-html \ --disable-external - - save_cache: - key: rubygems-v1-{% raw %}{{ checksum "Gemfile.lock" }}{% endraw %} - paths: - - vendor/bundle - - run: - name: Jekyll build - command: bundle exec jekyll build - persist_to_workspace: root: ./ paths: