ci: install Go via setup-go (go-react image has Node but not Go)
Build (Dev) / build (push) Successful in 11s
CI/CD / lint-and-typecheck (push) Successful in 7s
CI/CD / test (push) Successful in 7s
CI/CD / build (push) Failing after 8s
CI/CD / deploy (push) Has been skipped

build-dev failed with "go: command not found" — the go-react image ships
Node but no Go. Restore setup-go (its static Go binary runs on this runner,
unlike setup-node's dynamic Node), and keep Node from the image.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Joshua King
2026-06-05 09:52:14 -04:00
parent b1edabd3da
commit 35136cb9ad
+8 -2
View File
@@ -16,8 +16,14 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
# The go-react image ships Go + Node, so no setup-go/setup-node: # go-react has Node but not Go. setup-go installs a statically-linked
# those download tool-cache binaries that don't run on this runner. # Go that runs fine here; setup-node's dynamically-linked Node does
# not (so Node comes from the image instead).
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Toolchain versions - name: Toolchain versions
run: | run: |
go version go version