Skip to content

Commit

Permalink
fix: delete cache as it is not working anyways (#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
fhinkel authored and kjin committed Sep 12, 2018
1 parent b4583e2 commit 13f617a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
# Constant values.

node_modules_cache_key: &node_modules_cache_key node-modules-cache-{{ .Environment.CIRCLE_JOB }}-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
test_fixtures_cache_key: &test_fixtures_cache_key test-fixtures-cache-{{ .Environment.CIRCLE_JOB }}-{{ arch }}-{{ checksum "test/fixtures/plugin-fixtures.json" }}
plugin_types_cache_key: &plugin_types_cache_key plugin-types-cache-{{ .Environment.CIRCLE_JOB }}-{{ arch }}-{{ checksum "src/plugins/types/index.d.ts" }}
release_tags: &release_tags
Expand All @@ -16,17 +15,11 @@ unit_tests: &unit_tests
- run:
name: Configure npm to allow running scripts as root
command: npm config set unsafe-perm true
- restore_cache:
key: *node_modules_cache_key
- restore_cache:
key: *plugin_types_cache_key
- run:
name: Install modules and dependencies
command: npm install
- save_cache:
key: *node_modules_cache_key
paths:
- node_modules
- save_cache:
key: *plugin_types_cache_key
paths:
Expand Down

0 comments on commit 13f617a

Please sign in to comment.