Set correct path on windows

Co-authored-by: Amin Yahyaabadi <aminyahyaabadi74@gmail.com>
This commit is contained in:
Evgenij (Eugene) Beloded 2021-06-02 10:47:41 +07:00 committed by GitHub
parent 6af11308f3
commit 380cc927a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -246,7 +246,9 @@ The yarn cache directory will depend on your operating system and version of `ya
- name: Cache .pnpm-store
uses: actions/cache@v2
with:
path: ~/.pnpm-store
path: |
~/.pnpm-store
D:\.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}```
```