name: UI Build Check permissions: contents: read pull-requests: read on: pull_request: branches: - main - litellm_internal_staging - litellm_oss_staging - "litellm_**" concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} cancel-in-progress: ${{ github.event_name == 'pull_request' }} jobs: build-ui: runs-on: ubuntu-latest timeout-minutes: 10 defaults: run: working-directory: ui/litellm-dashboard steps: - name: Checkout repository uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 with: persist-credentials: false - name: Detect relevant changes id: changes uses: ./.github/actions/detect-changes with: category: ui - name: Setup Node.js if: steps.changes.outputs.decision != 'skip' uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: node-version-file: ui/litellm-dashboard/.nvmrc cache: "npm" cache-dependency-path: ui/litellm-dashboard/package-lock.json - name: Install dependencies if: steps.changes.outputs.decision != 'skip' run: npm ci - name: Build if: steps.changes.outputs.decision != 'skip' run: npm run build