Skip to content

Commit d66ba81

Browse files
author
Illia Obukhau
committed
ci(web-actions): add missing script
1 parent 4a0558d commit d66ba81

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { pushUpdateToTestProject, runModuleSteps } from "@mendix/release-utils-internal/steps";
2+
3+
async function main(): Promise<void> {
4+
await runModuleSteps({
5+
packagePath: process.cwd(),
6+
steps: [pushUpdateToTestProject]
7+
});
8+
}
9+
10+
main().catch(err => {
11+
console.error(err);
12+
process.exit(1);
13+
});

0 commit comments

Comments
 (0)