ci: run workflows on the go-react runner image
Build (Dev) / build (push) Failing after 10s
CI/CD / lint-and-typecheck (push) Successful in 1m23s
CI/CD / test (push) Successful in 8s
CI/CD / build (push) Failing after 1m23s
CI/CD / deploy (push) Has been skipped

The workflows used runs-on: ubuntu-latest, which mapped to
docker.gitea.com/runner-images:ubuntu-latest — an image whose Node from
setup-node won't execute (exit 127) and which lacks curl/jq. The runner
already advertises a purpose-built "go-react" CI image; point the
workflows at it instead.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Joshua King
2026-06-05 09:03:29 -04:00
parent a1456fe741
commit 50e672e753
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ env:
jobs:
build:
runs-on: ubuntu-latest
runs-on: go-react
steps:
- name: Checkout
uses: actions/checkout@v4
+4 -4
View File
@@ -8,7 +8,7 @@ on:
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -21,7 +21,7 @@ jobs:
test:
needs: lint-and-typecheck
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -33,7 +33,7 @@ jobs:
build:
needs: test
runs-on: ubuntu-latest
runs-on: go-react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -50,7 +50,7 @@ jobs:
deploy:
needs: build
runs-on: ubuntu-latest
runs-on: go-react
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
environment: production
steps: