Skip to content

Commit cf24f17

Browse files
authored
ci: cache metadata (#5524)
**What's the problem this PR addresses?** Now that yarnpkg/berry#5491 has landed we can cache the metadata for our e2e tests to potentially speed them up. **How did you fix it?** Cache metadata. **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed.
1 parent 033e1df commit cf24f17

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/prepare/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ runs:
3838

3939
- uses: actions/cache@v3
4040
with:
41-
path: ${{ steps.global-path.outputs.globalFolder }}/cache
41+
path: |
42+
${{ steps.global-path.outputs.globalFolder }}/cache
43+
${{ steps.global-path.outputs.globalFolder }}/metadata
4244
key: dependencies-${{ runner.os }}-${{ github.workflow }}-${{ github.sha }}
4345
#endregion

0 commit comments

Comments
 (0)