Skip to content

Commit a9d799b

Browse files
CI: Cache node modules
1 parent 4f029d0 commit a9d799b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/dotnet-core-desktop.yml

+13
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525

26+
- name: Cache node modules
27+
uses: actions/cache@v2
28+
env:
29+
cache-name: cache-node-modules
30+
with:
31+
# npm cache files are stored in `~/.npm` on Linux/macOS
32+
path: ~/.npm
33+
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
34+
restore-keys: |
35+
${{ runner.os }}-build-${{ env.cache-name }}-
36+
${{ runner.os }}-build-
37+
${{ runner.os }}-
38+
2639
- name: Install .NET Core
2740
uses: actions/setup-dotnet@v1
2841
with:

0 commit comments

Comments
 (0)