Chore/CI: use fs cache to save bandwidth

This commit is contained in:
SukkaW
2023-12-23 04:27:35 +08:00
parent 7fbd4a570f
commit 230ac3eb18
21 changed files with 358 additions and 206 deletions

View File

@@ -4,7 +4,7 @@ export const processLine = (line: string): string | null => {
}
const trimmed: string = line.trim();
if (trimmed === '') {
if (trimmed.length === 0) {
return null;
}