4 Commits
1.0.2 ... 1.0.1

Author SHA1 Message Date
a06df1ffd4 disable CI for now 2025-09-09 09:30:11 -05:00
4d8fd40b35 print commands before running
Some checks failed
CI / build (ubuntu-latest) (push) Failing after 3s
CI / build (macos-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
2025-09-09 09:26:56 -05:00
b175fc8e0c try npx call yarn
Some checks failed
CI / build (ubuntu-latest) (push) Failing after 12s
CI / build (macos-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
2025-09-09 09:20:29 -05:00
68846af98a try install yarn
Some checks failed
CI / build (ubuntu-latest) (push) Failing after 49s
CI / build (macos-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
2025-09-08 16:35:12 -05:00
2 changed files with 4 additions and 3 deletions

View File

@@ -2503,7 +2503,6 @@ module.exports = require("util");
const { execSync } = __webpack_require__(129);
const core = __webpack_require__(470);
const version = core.getInput("lix-version");
execSync("npm install -g yarn");
execSync("yarn global add lix" + (version ? `@${version}` : ""));
const path = execSync("yarn global bin").toString().replaceAll("\n", "");
core.addPath(path);

View File

@@ -2,6 +2,8 @@ const { execSync } = require("child_process");
const core = require("@actions/core");
const version = core.getInput("lix-version");
execSync("npm install -g yarn");
execSync("yarn global add lix" + (version ? `@${version}` : ""));
const path = execSync("yarn global bin").toString().replaceAll("\n", "");
console.log("npx yarn global add lix" + (version ? `@${version}` : ""));
execSync("npx yarn global add lix" + (version ? `@${version}` : ""));
console.log("npx yarn global bin");
const path = execSync("npx yarn global bin").toString().replaceAll("\n", "");
core.addPath(path);