Skip to content

Commit 30a3a43

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

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed
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)