4 Commits
main ... 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 5 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
const { execSync } = require("child_process");
const core = require("@actions/core");
const version = core.getInput("lix-version");
execSync("yarn global add lix" + (version ? `@${version}` : ""));
const path = execSync("yarn global bin").toString().replaceAll("\n", "");
execSync("npm install -g yarn");
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);