← 返回首页
fix: Add website build check for PRs and fix blog frontmatter YAML er… · Shizoqua/feast@30a3a43 · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Commit 30a3a43

Browse files
authored
fix: Add website build check for PRs and fix blog frontmatter YAML error (feast-dev#6079)
fix: Fixed blog title and added format test workflow Signed-off-by: ntkathole <nikhilkathole2683@gmail.com>
1 parent 3d4d306 commit 30a3a43

2 files changed

Lines changed: 33 additions & 1 deletion

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

‎infra/website/docs/blog/feast-mlflow-kubeflow.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle
2+
title: "Feast + MLflow + Kubeflow: A Unified AI/ML Lifecycle"
33
description: Learn how to use Feast, MLflow, and Kubeflow to power your AI/ML Lifecycle
44
date: 2026-02-23
55
authors: ["Francisco Javier Arceo", "Nikhil Kathole"]

0 commit comments

Comments
 (0)

Footer

© 2026 GitHub, Inc.