diff options
author | 2022-03-01 11:59:06 -0800 | |
---|---|---|
committer | 2022-03-01 11:59:06 -0800 | |
commit | 9ec8980bd20b80d20cc19a9455aacdc34b071faa (patch) | |
tree | 7e3956de3c794465a49d0ca4ff60ad0966fa66a1 /scripts/smoke/index.js | |
parent | d9263c84272487aeb1adb127a5fbd470ec3e15ce (diff) | |
download | astro-9ec8980bd20b80d20cc19a9455aacdc34b071faa.tar.gz astro-9ec8980bd20b80d20cc19a9455aacdc34b071faa.tar.zst astro-9ec8980bd20b80d20cc19a9455aacdc34b071faa.zip |
fix failing format command in CI (#2696)
* fix failing format command in CI
* adds a check to formatting to ci
* ignore the prettier plugin for now
* update smoke to remove prettier plugin
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r-- | scripts/smoke/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js index c0600e2b7..140f006c1 100644 --- a/scripts/smoke/index.js +++ b/scripts/smoke/index.js @@ -33,7 +33,7 @@ const getChildDirectories = async (/** @type {URL} */ dir) => { async function run() { console.log(''); - const directories = [...await getChildDirectories(exampleDir), ...await getChildDirectories(smokeDir)]; + const directories = [...(await getChildDirectories(exampleDir)), ...(await getChildDirectories(smokeDir))]; console.log('🤖', 'Preparing', 'yarn'); @@ -65,4 +65,4 @@ async function run() { } } -run();
\ No newline at end of file +run(); |