style: run prettier on cache-save.ts

This commit is contained in:
Salman Chishti 2026-03-09 07:11:11 -07:00 committed by GitHub
parent 974c02c884
commit db56306c3a

View File

@ -18,7 +18,9 @@ export async function run(earlyExit?: boolean) {
try { try {
const cacheWriteEnabled = core.getInput('cache-write'); const cacheWriteEnabled = core.getInput('cache-write');
if (cacheWriteEnabled === 'false') { 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; return;
} }