2 Commits
master ... main

Author SHA1 Message Date
64f07b51ff install yarn 2025-09-09 09:41:53 -05:00
66238e0949 don't run CI right now 2025-09-09 09:41:18 -05:00
3 changed files with 2 additions and 0 deletions

View File

@@ -2503,6 +2503,7 @@ 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

@@ -1,6 +1,7 @@
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", "");
core.addPath(path);