mirror of
https://github.com/actions/cache.git
synced 2025-05-31 14:32:30 +00:00
Sort inputs and remove whitespaces after exclamation at the beginning of lines
This commit is contained in:
@ -147,7 +147,7 @@ test("restore with no key", async () => {
|
||||
test("restore with too many keys should fail", async () => {
|
||||
const path = "node_modules";
|
||||
const key = "node-test";
|
||||
const restoreKeys = [...Array(20).keys()].map(x => x.toString());
|
||||
const restoreKeys = [...Array(20).keys()].map(x => x.toString()).sort();
|
||||
testUtils.setInputs({
|
||||
path: path,
|
||||
key,
|
||||
|
Reference in New Issue
Block a user