This is an automated email from the ASF dual-hosted git repository. lizhimins pushed a commit to branch rocketmq-studio in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git
commit 64839714b542abf8fef455ecb6d060f8fac5c140 Author: aias00 <[email protected]> AuthorDate: Thu Jul 23 22:42:48 2026 -0700 ci: build frontend Docker image (#500) Add frontend Docker image build to CI workflow to validate Dockerfile/nginx deployment path. --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5f1b59c..1a765df1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,3 +52,13 @@ jobs: - name: Build frontend run: npm run build + + frontend-docker-build: + name: Frontend Docker Build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build frontend Docker image + run: docker build -t rocketmq-studio-web-ci ./web
