Skip to content

Commit e0395db

Browse files
committed
added --ignore-scripts
1 parent a02dc41 commit e0395db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/scripts/setup.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import { setFailed } from "@actions/core";
22
import { stepResponse, buildComment } from "src/main";
33

44
export const setup = async (): Promise<stepResponse> => {
5-
const commands = [{ label: "Install Dependencies", command: "npm ci" }];
5+
const commands = [
6+
{ label: "Install Dependencies", command: "npm ci --ignore-scripts" },
7+
];
68

79
const [commentBody, errorMessages] = await buildComment(commands);
810

0 commit comments

Comments
 (0)