Updating Lemonade image in the Open WebUI playbook #694
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
| # Copyright Advanced Micro Devices, Inc. | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: Check Website | |
| on: | |
| workflow_dispatch: # Manual triggering | |
| pull_request: | |
| jobs: | |
| check-website: | |
| name: Website Build Check | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: website | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: website/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run linter | |
| run: npm run lint | |
| - name: Build website | |
| run: npm run build | |
| - name: Display summary | |
| run: | | |
| echo "### ✅ Website Check Summary" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "| Step | Status |" >> $GITHUB_STEP_SUMMARY | |
| echo "|------|--------|" >> $GITHUB_STEP_SUMMARY | |
| echo "| Dependencies | ✅ Installed |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Linting | ✅ Passed |" >> $GITHUB_STEP_SUMMARY | |
| echo "| Build | ✅ Successful |" >> $GITHUB_STEP_SUMMARY | |