[ci] yarn format

This commit is contained in:
FredKSchott 2021-11-12 00:01:05 +00:00 committed by GitHub Actions
parent 2f46e87fe3
commit df881f5a17

View file

@ -112,7 +112,7 @@ export async function run() {
`"${new Date().toISOString()}"`,
].join(',');
const statCsv = readFileSync('scripts/stats/stats.csv', {encoding: 'utf-8'});
const statCsv = readFileSync('scripts/stats/stats.csv', { encoding: 'utf-8' });
const [statHeader, ...statItems] = statCsv.split('\n');
const updatedStatCsv = [statHeader, entry, ...statItems].join('\n');
writeFileSync('scripts/stats/stats.csv', updatedStatCsv);