|
|
@@ -31,7 +31,10 @@ jobs:
|
|
|
- uses: actions/cache@v2
|
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
|
with:
|
|
|
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
+ path: |
|
|
|
+ node_modules
|
|
|
+ packages/*/node_modules
|
|
|
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
restore-keys: |
|
|
|
${{ runner.os }}-yarn-
|
|
|
@@ -55,7 +58,10 @@ jobs:
|
|
|
- uses: actions/cache@v2
|
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
|
with:
|
|
|
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
+ path: |
|
|
|
+ node_modules
|
|
|
+ packages/*/node_modules
|
|
|
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
restore-keys: |
|
|
|
${{ runner.os }}-yarn-
|
|
|
@@ -124,7 +130,10 @@ jobs:
|
|
|
- uses: actions/cache@v2
|
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
|
with:
|
|
|
- path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
+ path: |
|
|
|
+ node_modules
|
|
|
+ packages/*/node_modules
|
|
|
+ ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
restore-keys: |
|
|
|
${{ runner.os }}-yarn-
|