File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ jobs:
250
250
if : ${{ matrix.client.language == 'javascript' }}
251
251
uses : actions/cache@v3
252
252
with :
253
- path : ${{ steps.yarn-cache-dir-tests.outputs.dir || '${{ matrix.client.testsRootFolder }} /.yarn/cache' }}
253
+ path : ${{ steps.yarn-cache-dir-tests.outputs.dir || format('{0} /.yarn/cache', matrix.client.testsRootFolder) }}
254
254
# let yarn handle the cache hash
255
255
key : yarn-cache-tests-${{ env.CACHE_VERSION }}
256
256
@@ -259,7 +259,7 @@ jobs:
259
259
uses : actions/cache@v3
260
260
with :
261
261
path : ${{ matrix.client.testsRootFolder }}/node_modules
262
- key : node-modules-tests-${{ env.CACHE_VERSION }}-${{ hashFiles('${{ matrix.client.testsRootFolder }}/ yarn.lock') }}
262
+ key : node-modules-tests-${{ env.CACHE_VERSION }}-${{ hashFiles(format('{0}/. yarn.lock', matrix.client.testsRootFolder) ) }}
263
263
264
264
- name : Run CTS
265
265
run : yarn cli cts run ${{ matrix.client.language }}
You can’t perform that action at this time.
0 commit comments