Move into outputs folder for leo clean checks

This commit is contained in:
howardwu 2021-01-18 08:24:59 -08:00
parent a01004a303
commit cf8d646008

View File

@ -50,6 +50,7 @@ jobs:
- name: Assert that the 'outputs' folder is not empty
run: |
cd ../hello-world/outputs
if [ "$(ls -A $DIR)" ]; then
echo "$DIR is not empty"
else
@ -65,6 +66,7 @@ jobs:
- name: Assert that the 'outputs' folder is empty
run: |
cd ../hello-world/outputs
if [ "$(ls -A $DIR)" ]; then
echo "$DIR is not empty"
exit 1