Fix script execution order. Run test fixture in workflow.

This commit is contained in:
Yang Chen
2019-12-15 00:34:03 +11:00
committed by ychescale9
parent 269b6dcc82
commit c03965e565
35 changed files with 720 additions and 14 deletions
+5 -5
View File
@@ -61,13 +61,13 @@ async function run() {
}
// execute the custom script
scripts.forEach(async (script: string) => {
try {
try {
for (const script of scripts) {
await exec.exec(`${script}`);
} catch (error) {
core.setFailed(error.message);
}
});
} catch (error) {
core.setFailed(error.message);
}
// finally kill the emulator
await killEmulator();