Skip to content

Commit 8f064fd

Browse files
committed
wip
1 parent c54e5b4 commit 8f064fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

actions/disallow-versions-by-type/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/disallow-versions-by-type/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function run() {
2020
if (line.includes('"@elementor/') && line.includes(':') && line.includes('major')) {
2121
core.info(`${versionType} version is not allowed. Found in '${filePath}'`);
2222
core.setFailed(`${versionType} version is not allowed. Found in '${filePath}'`);
23-
break;
23+
process.exit(1);
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)