From 0d103bb3ac46d2c42bdb05752971a9fc839de44b Mon Sep 17 00:00:00 2001 From: Seth Landry Date: Thu, 16 Jan 2025 11:20:30 -0600 Subject: [PATCH] Add `setup-go` script to `package.json` * Add a new script `setup-go` to the `scripts` section to run the Go setup action * Update the script to use `node ./.github/scripts/setup-go.js` instead of a placeholder command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 66120a29d839..16c2b44f657e 100644 --- a/package.json +++ b/package.json @@ -131,7 +131,7 @@ "attributions:generate": "./development/generate-attributions.sh", "ci-rerun-from-failed": "tsx .circleci/scripts/rerun-ci-workflow-from-failed.ts", "git-diff-default-branch": "tsx .circleci/scripts/git-diff-default-branch.ts", - "setup-go": "echo \"Setting up Go environment...\" && exit 0" + "setup-go": "node ./.github/scripts/setup-go.js" }, "resolutions": { "chokidar": "^3.6.0",