Skip to content

Commit

Permalink
npm i --ignore-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Dec 13, 2024
1 parent e0395db commit 0bb66e4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export async function run(): Promise<void> {
chdir(workingDirectory);
}

// get token and octokit
// get the token and octokit
let token = "";
if (process.env.GITHUB_TOKEN && isLocal) {
token = process.env.GITHUB_TOKEN;
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { stepResponse, buildComment } from "src/main";

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

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

0 comments on commit 0bb66e4

Please sign in to comment.