We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef71afc commit e9073a8Copy full SHA for e9073a8
.github/workflows/build.yml
@@ -34,13 +34,11 @@ jobs:
34
restore-keys: |
35
${{ runner.os }}-dotnet-tools-
36
37
- - name: Cache NPM
38
- uses: actions/cache@v3
+ - uses: actions/setup-node@v3
39
with:
40
- path: "%LOCALAPPDATA%/npm-cache"
41
- key: ${{ runner.os }}-npm-${{ hashFiles('src/*/package-lock.json') }}
42
- restore-keys: |
43
- ${{ runner.os }}-npm-
+ node-version: 18
+ cache: 'npm'
+ cache-dependency-path: src/papyrus-lang-vscode/package-lock.json
44
45
- name: Setup Nuget.exe
46
if: success()
0 commit comments