mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
35 lines
993 B
YAML
35 lines
993 B
YAML
name: Run UI Component Build
|
|
|
|
# * Always run on "main"
|
|
# * Run on PRs that have changes in the "openhands-ui" folder or this workflow
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- 'openhands-ui/**'
|
|
- '.github/workflows/ui-build.yml'
|
|
|
|
# If triggered by a PR, it will be in the same group. However, each commit on main will be in its own unique group
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ (github.head_ref && github.ref) || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
ui-build:
|
|
name: Build openhands-ui
|
|
runs-on: blacksmith-4vcpu-ubuntu-2204
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version-file: "openhands-ui/.bun-version"
|
|
- name: Install dependencies
|
|
working-directory: ./openhands-ui
|
|
run: bun install --frozen-lockfile
|
|
- name: Build package
|
|
working-directory: ./openhands-ui
|
|
run: bun run build
|