We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f029d0 commit a9d799bCopy full SHA for a9d799b
.github/workflows/dotnet-core-desktop.yml
@@ -23,6 +23,19 @@ jobs:
23
with:
24
fetch-depth: 0
25
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
+
39
- name: Install .NET Core
40
uses: actions/setup-dotnet@v1
41
0 commit comments