Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/pr_website_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Website Build Check

on:
pull_request:
paths:
- 'infra/website/**'

concurrency:
group: "pr-website-${{ github.event.pull_request.number }}"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: infra/website/package-lock.json

- name: Install dependencies
working-directory: infra/website
run: npm ci

- name: Build site
working-directory: infra/website
run: npm run build
2 changes: 1 addition & 1 deletion infra/website/docs/blog/feast-mlflow-kubeflow.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle
title: "Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle"
description: Learn how to use Feast, MLflow, and Kubeflow to power your AI/ML Lifecycle
date: 2026-02-23
authors: ["Francisco Javier Arceo", "Nikhil Kathole"]
Expand Down
Loading