content: Specify Leo control options from WebUI (#138) #196
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build website | |
| on: | |
| push: | |
| branches: | |
| - development | |
| pull_request: | |
| branches: | |
| - production | |
| - development | |
| jobs: | |
| build-website: | |
| name: Build website | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Cache Docusaurus build artifacts | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| .docusaurus | |
| build | |
| key: docusaurus-build-${{ hashFiles('docusaurus.config.js', 'src/**/*', 'docs/**/*') }} | |
| restore-keys: | | |
| docusaurus-build- | |
| - name: Test build website | |
| run: yarn build |