Skip to content

Commit 2ef0eb9

Browse files
committed
Fix param name
1 parent fdab745 commit 2ef0eb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
# Download and cache dependencies
2323
- restore_cache:
2424
keys:
25-
- v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-version >>
25+
- v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-test-version >>
2626
# fallback to using the latest cache if no exact match is found
2727
- v1-dependencies-
2828

2929
- when:
3030
condition: << parameters.graphql-test-version >>
3131
steps:
3232
- run: yarn install --ignore-scripts
33-
- run: yarn --ignore-scripts add --dev graphql@<< parameters.graphql-version >>
33+
- run: yarn --ignore-scripts add --dev graphql@<< parameters.graphql-test-version >>
3434
- unless:
3535
condition: << parameters.graphql-test-version >>
3636
steps:
@@ -39,7 +39,7 @@ jobs:
3939
- save_cache:
4040
paths:
4141
- node_modules
42-
key: v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-version >>
42+
key: v1-dependencies-{{ checksum "package.json" }}-<< parameters.graphql-test-version >>
4343

4444
# run tests!
4545
- run: yarn test

0 commit comments

Comments
 (0)