mirror of
https://code.forgejo.org/actions/cache.git
synced 2025-04-22 00:33:57 +08:00
Sort inputs and remove whitespaces after exclamation at the beginning of lines
This commit is contained in:
parent
9c77c9dbfc
commit
2bdaf00273
3 changed files with 34 additions and 3 deletions
|
@ -97,7 +97,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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue