Skip to content

Commit

Permalink
fixup! remove upload step in favour of #11666
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Nov 28, 2017
1 parent c447b40 commit dd098cb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .circleci/config.yml
Expand Up @@ -25,7 +25,11 @@ jobs:
fi
- restore_cache:
key: node-modules-{{ checksum "yarn.lock" }}
name: Restore node_modules cache
keys:
- v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
- v1-node-{{ arch }}-{{ .Branch }}-
- v1-node-{{ arch }}-

- run:
name: Nodejs Version
Expand All @@ -40,6 +44,7 @@ jobs:
command: ./scripts/circleci/test_entry_point.sh

- save_cache:
key: node-modules-{{ checksum "yarn.lock" }}
name: Save node_modules cache
key: v1-node-{{ arch }}-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules

0 comments on commit dd098cb

Please sign in to comment.