Skip to content

Commit 93d18bf

Browse files
author
David Buzinski
committed
remove import guard because we refactored everything to use common-utils
1 parent eb252f7 commit 93d18bf

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

src/index.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ async function run() {
3434
});
3535
}
3636

37-
// Only run this action if it is invoked directly. Do not run if this node
38-
// module is required by another action such as run-tests.
39-
if (import.meta.filename === process.argv[1]) {
40-
run().catch((e) => {
41-
core.setFailed(e);
42-
});
43-
}
37+
run().catch((e) => {
38+
core.setFailed(e);
39+
});

0 commit comments

Comments
 (0)