fix formatting

This commit is contained in:
Albert Still 2021-03-26 10:49:07 +11:00
parent 1eade9d5b9
commit 6f05cbc278

View file

@ -52,7 +52,11 @@ async function run(): Promise<void> {
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
utils.setCacheHitOutput(isExactKeyMatch);
core.info(`Cache restored from ${isExactKeyMatch ? '' : 'restore '}key: ${cacheKey}`);
core.info(
`Cache restored from ${
isExactKeyMatch ? "" : "restore "
}key: ${cacheKey}`
);
} catch (error) {
if (error.name === cache.ValidationError.name) {
throw error;