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

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') }}"