0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

[ci] yarn format

This commit is contained in:
jonathantneal 2022-02-15 15:52:31 +00:00 committed by GitHub Actions
parent fb9a77b77f
commit b8dbba6c4b

View file

@ -23,19 +23,19 @@ const rootDir = new URL('../../', import.meta.url);
/** Runs all smoke tests. */
async function run() {
const dirs = await getChildDirectories(scriptDir)
const dirs = await getChildDirectories(scriptDir);
if (dirs.length) {
console.log()
console.log();
for (const dir of await getChildDirectories(scriptDir)) {
console.log('🤖', 'Removing', dir.pathname.split('/').at(-1));
fs.rm(dir, { force: true, recursive: true })
fs.rm(dir, { force: true, recursive: true });
}
}
console.log()
console.log();
console.log('🤖', 'Resetting', 'yarn');