Signed-off-by: bwplotka <bwplotka@gmail.com>
This commit is contained in:
bwplotka 2025-02-06 11:11:46 +00:00
parent cb096a8ea8
commit 787ab2fc3a
2 changed files with 5 additions and 3 deletions

View File

@ -46,7 +46,8 @@ jobs:
GOTOOLCHAIN: local
container:
# The go version in this image should be N-1 wrt test_go.
image: quay.io/prometheus/golang-builder:1.22-base
# DEBUGGING https://github.com/prometheus/test-infra/issues/832
image: quay.io/prometheus/golang-builder:1.23-main
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: make build

View File

@ -51,13 +51,14 @@ ui-bump-version:
cd web/ui && npm install
git add "./web/ui/package-lock.json" "./**/package.json"
## Debugging https://github.com/prometheus/test-infra/issues/832#issuecomment-2639527788
.PHONY: ui-install
ui-install:
cd $(UI_PATH) && npm install
cd $(UI_PATH) && npm install --verbose
# The old React app has been separated from the npm workspaces setup to avoid
# issues with conflicting dependencies. This is a temporary solution until the
# new Mantine-based UI is fully integrated and the old app can be removed.
cd $(UI_PATH)/react-app && npm install
cd $(UI_PATH)/react-app && npm install --verbose
.PHONY: ui-build
ui-build: