From 80fa0bc809c7646234670457b2dd8a909a226b27 Mon Sep 17 00:00:00 2001 From: ntkathole Date: Mon, 9 Mar 2026 19:30:22 +0530 Subject: [PATCH] fix: Fixed blog title and added format test workflow Signed-off-by: ntkathole --- .github/workflows/pr_website_build.yml | 32 +++++++++++++++++++ .../docs/blog/feast-mlflow-kubeflow.md | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/pr_website_build.yml diff --git a/.github/workflows/pr_website_build.yml b/.github/workflows/pr_website_build.yml new file mode 100644 index 00000000000..926f1fca0f9 --- /dev/null +++ b/.github/workflows/pr_website_build.yml @@ -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 diff --git a/infra/website/docs/blog/feast-mlflow-kubeflow.md b/infra/website/docs/blog/feast-mlflow-kubeflow.md index 257affd222d..9b2111e2d44 100644 --- a/infra/website/docs/blog/feast-mlflow-kubeflow.md +++ b/infra/website/docs/blog/feast-mlflow-kubeflow.md @@ -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"]