Engineering - pull request actions should read from the cache (#254154)

This commit is contained in:
Ladislau Szomoru
2025-07-04 19:12:56 +00:00
committed by GitHub
parent b76cdfbec1
commit f52e13bc6b
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ jobs:
- name: Restore node_modules cache
id: cache-node-modules
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/node_modules_cache
key: "node_modules-${{ hashFiles('.build/packagelockhash') }}"
@@ -91,7 +91,7 @@ jobs:
- name: Restore built-in extensions cache
id: cache-builtin-extensions
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/builtInExtensions
key: "builtin-extensions-${{ hashFiles('.build/builtindepshash') }}"
+2 -2
View File
@@ -55,7 +55,7 @@ jobs:
- name: Restore node_modules cache
id: cache-node-modules
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/node_modules_cache
key: "node_modules-${{ hashFiles('.build/packagelockhash') }}"
@@ -119,7 +119,7 @@ jobs:
- name: Restore built-in extensions cache
id: cache-builtin-extensions
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/builtInExtensions
key: "builtin-extensions-${{ hashFiles('.build/builtindepshash') }}"
+2 -2
View File
@@ -40,7 +40,7 @@ jobs:
node build/azure-pipelines/common/computeNodeModulesCacheKey.js win32 ${{ env.VSCODE_ARCH }} $(node -p process.arch) > .build/packagelockhash
- name: Restore node_modules cache
uses: actions/cache@v4
uses: actions/cache/restore@v4
id: node-modules-cache
with:
path: .build/node_modules_cache
@@ -100,7 +100,7 @@ jobs:
- name: Restore built-in extensions cache
id: cache-builtin-extensions
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/builtInExtensions
key: "builtin-extensions-${{ hashFiles('.build/builtindepshash') }}"
+1 -1
View File
@@ -32,7 +32,7 @@ jobs:
- name: Restore node_modules cache
id: cache-node-modules
uses: actions/cache@v4
uses: actions/cache/restore@v4
with:
path: .build/node_modules_cache
key: "node_modules-${{ hashFiles('.build/packagelockhash') }}"