Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: improve e2e cache keys #636

Merged
merged 1 commit into from
Aug 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,10 @@ jobs:
# core node_modules cache
- restore_cache:
keys:
- v1-deps-{{ checksum "package-lock.json" }}
- v1-deps
- ory-kratos-e2e-{{ checksum "package-lock.json" }}
- run: npm ci
- save_cache:
key: v1-deps-{{ checksum "package-lock.json" }}
key: ory-kratos-e2e-{{ checksum "package-lock.json" }}
# cache NPM modules and the folder with the Cypress binary
paths:
- ~/.npm
Expand Down