We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02dc41 commit e0395dbCopy full SHA for e0395db
src/scripts/setup.ts
@@ -2,7 +2,9 @@ import { setFailed } from "@actions/core";
2
import { stepResponse, buildComment } from "src/main";
3
4
export const setup = async (): Promise<stepResponse> => {
5
- const commands = [{ label: "Install Dependencies", command: "npm ci" }];
+ const commands = [
6
+ { label: "Install Dependencies", command: "npm ci --ignore-scripts" },
7
+ ];
8
9
const [commentBody, errorMessages] = await buildComment(commands);
10
0 commit comments