Signed-off-by: bwplotka <bwplotka@gmail.com>
pull/15982/head
bwplotka 1 year ago
parent cb096a8ea8
commit 787ab2fc3a
  1. 3
      .github/workflows/ci.yml
  2. 5
      Makefile

@ -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

@ -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:

Loading…
Cancel
Save