Skip to content

Commit d093510

Browse files
committed
just use npm i
1 parent 983027c commit d093510

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,8 @@ if (pushToBranch == true && !githubToken)
3030
core.info("Installing tsc");
3131
await exec("npm i --g typescript");
3232

33-
await exec("corepack enable");
34-
3533
core.info("Installing dependencies");
36-
await exec(`npm ci || yarn --immutable`, [], { cwd: directory }).catch(
37-
(_err) => {}
38-
);
34+
await exec(`npm i`, [], { cwd: directory }).catch((_err) => {});
3935

4036
// Build project
4137
console.info("Building project");

0 commit comments

Comments
 (0)