Skip to content

Commit 0bb66e4

Browse files
committed
npm i --ignore-scripts
1 parent e0395db commit 0bb66e4

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

dist/index.js

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export async function run(): Promise<void> {
7777
chdir(workingDirectory);
7878
}
7979

80-
// get token and octokit
80+
// get the token and octokit
8181
let token = "";
8282
if (process.env.GITHUB_TOKEN && isLocal) {
8383
token = process.env.GITHUB_TOKEN;

src/scripts/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { stepResponse, buildComment } from "src/main";
33

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

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

0 commit comments

Comments
 (0)