style: run prettier on cache-save.ts

This commit is contained in:
Salman Chishti 2026-03-09 07:11:12 -07:00 committed by GitHub
commit 4a6270ada6

View file

@ -20,7 +20,9 @@ export async function run(earlyExit?: boolean) {
try {
const cacheWriteEnabled = core.getInput('cache-write');
if (cacheWriteEnabled === 'false') {
core.info('Cache write is disabled (read-only mode). Skipping cache save.');
core.info(
'Cache write is disabled (read-only mode). Skipping cache save.'
);
return;
}