Skip to content

Commit

Permalink
added --ignore-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 13, 2024
1 parent a02dc41 commit e0395db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scripts/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { setFailed } from "@actions/core";
import { stepResponse, buildComment } from "src/main";

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

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

Expand Down

0 comments on commit e0395db

Please sign in to comment.