2 files changed
@@ -0,0 +1,32 @@ | |||
| 1 | + name: Website Build Check | ||
| 2 | + | ||
| 3 | + on: | ||
| 4 | + pull_request: | ||
| 5 | + paths: | ||
| 6 | + - 'infra/website/**' | ||
| 7 | + | ||
| 8 | + concurrency: | ||
| 9 | + group: "pr-website-${{ github.event.pull_request.number }}" | ||
| 10 | + cancel-in-progress: true | ||
| 11 | + | ||
| 12 | + jobs: | ||
| 13 | + build: | ||
| 14 | + runs-on: ubuntu-latest | ||
| 15 | + steps: | ||
| 16 | + - name: Checkout | ||
| 17 | + uses: actions/checkout@v4 | ||
| 18 | + | ||
| 19 | + - name: Setup Node.js | ||
| 20 | + uses: actions/setup-node@v4 | ||
| 21 | + with: | ||
| 22 | + node-version: '20' | ||
| 23 | + cache: 'npm' | ||
| 24 | + cache-dependency-path: infra/website/package-lock.json | ||
| 25 | + | ||
| 26 | + - name: Install dependencies | ||
| 27 | + working-directory: infra/website | ||
| 28 | + run: npm ci | ||
| 29 | + | ||
| 30 | + - name: Build site | ||
| 31 | + working-directory: infra/website | ||
| 32 | + run: npm run build | ||
@@ -1,5 +1,5 @@ | |||
| 1 | 1 | --- | |
| 2 | - title: Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle | ||
| 2 | + title: "Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle" | ||
| 3 | 3 | description: Learn how to use Feast, MLflow, and Kubeflow to power your AI/ML Lifecycle | |
| 4 | 4 | date: 2026-02-23 | |
| 5 | 5 | authors: ["Francisco Javier Arceo", "Nikhil Kathole"] | |
0 commit comments