fix: maybe looking at the correct file will help (#18582)

pull/18555/head
Alex Boatwright 2020-06-17 13:34:38 -07:00 committed by GitHub
parent 584e44d92b
commit 238c3ecb47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -208,7 +208,7 @@ jobs:
- checkout
- restore_cache:
keys:
- 'yarn-cached-packages-{{ checksum "yarn.lock" }}'
- 'yarn-cached-packages-{{ checksum "ui/yarn.lock" }}'
name: "Restore Yarn Package Cache"
- run:
command: |
@ -231,7 +231,7 @@ jobs:
path: coverage
destination: raw-test-output
- save_cache:
key: 'yarn-cached-packages-{{ checksum "yarn.lock" }}'
key: 'yarn-cached-packages-{{ checksum "ui/yarn.lock" }}'
name: "Save Yarn Package Cache"
paths:
- ~/.cache/yarn
@ -244,7 +244,7 @@ jobs:
- checkout
- restore_cache:
keys:
- 'yarn-cached-packages-{{ checksum "yarn.lock" }}'
- 'yarn-cached-packages-{{ checksum "ui/yarn.lock" }}'
name: "Restore Yarn Package Cache"
- run:
command: |
@ -261,7 +261,7 @@ jobs:
TESTFILES=$(circleci tests glob "src/**/*.ts*" "cypress/**/*.ts*" | circleci tests split --split-by=filesize)
yarn eslint:circleci $TESTFILES
- save_cache:
key: 'yarn-cached-packages-{{ checksum "yarn.lock" }}'
key: 'yarn-cached-packages-{{ checksum "ui/yarn.lock" }}'
name: "Save Yarn Package Cache"
paths:
- ~/.cache/yarn