mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Engineering - pull request actions should read from the cache (#254154)
This commit is contained in:
@@ -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') }}"
|
||||
|
||||
@@ -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') }}"
|
||||
|
||||
@@ -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') }}"
|
||||
|
||||
@@ -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') }}"
|
||||
|
||||
Reference in New Issue
Block a user