From 68846af98ae1240f3c11431f5dd0930ca443d474 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Mon, 8 Sep 2025 16:35:12 -0500 Subject: [PATCH] try install yarn --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 04389ae..971c318 100644 --- a/src/index.js +++ b/src/index.js @@ -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);