mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
9a3570fa1c
* feat: Daemon modularization + capability-gated command routing + CI/test pipeline updates * update android test * fix arch * no serial * fixup tests locally; update runner on CI * increase timeout * drop unnecessary node build
24 lines
586 B
YAML
24 lines
586 B
YAML
name: 'Build Docs'
|
|
description: 'Setup environment and build documentation'
|
|
|
|
inputs:
|
|
rspress-base:
|
|
description: 'The value for RSPRESS_BASE environment variable'
|
|
required: true
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Setup toolchain
|
|
if: ${{ github.event.action != 'closed' }}
|
|
uses: ./.github/actions/setup-node-pnpm
|
|
|
|
- name: Build docs
|
|
if: ${{ github.event.action != 'closed' }}
|
|
working-directory: website
|
|
env:
|
|
NODE_ENV: production
|
|
RSPRESS_BASE: ${{ inputs.rspress-base }}
|
|
run: pnpm run build
|
|
shell: bash
|