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 983027c commit d093510Copy full SHA for d093510
src/index.js
@@ -30,12 +30,8 @@ if (pushToBranch == true && !githubToken)
30
core.info("Installing tsc");
31
await exec("npm i --g typescript");
32
33
- await exec("corepack enable");
34
-
35
core.info("Installing dependencies");
36
- await exec(`npm ci || yarn --immutable`, [], { cwd: directory }).catch(
37
- (_err) => {}
38
- );
+ await exec(`npm i`, [], { cwd: directory }).catch((_err) => {});
39
40
// Build project
41
console.info("Building project");
0 commit comments