Skip to content

Commit b5d3de6

Browse files
committed
add workflow test
1 parent 974f82c commit b5d3de6

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test PocketFlow Agent Pipeline
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test-pipeline:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11'
19+
- name: Install dependencies
20+
run: |
21+
python -m pip install --upgrade pip
22+
pip install -r requirements.txt
23+
- name: Run PocketFlow agent pipeline test
24+
run: |
25+
python src/test_pipeline.py

frontend/src/components/Header.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { useEffect, useState } from 'react';
22
import { motion } from 'framer-motion';
3-
import { Zap, Target, Brain } from 'lucide-react';
43

54
const BACKEND_URL = import.meta.env.VITE_HEALTH_URL || 'https://crawlwise.onrender.com/health';
65

@@ -58,6 +57,12 @@ const Header: React.FC = () => {
5857
animate={{ opacity: 1, x: 0 }}
5958
transition={{ duration: 0.6, delay: 0.2 }}
6059
>
60+
{/* Powered by Alchemyst AI badge */}
61+
<div className="hidden md:flex items-center space-x-2 px-3 py-1.5 rounded-full bg-white/5 border border-white/10 text-xs text-gray-300 font-medium">
62+
<span>Powered by</span>
63+
<span className="font-bold text-blue-400">Alchemyst AI</span>
64+
</div>
65+
{/* Status Indicator */}
6166
<div className="flex items-center space-x-2 px-3 py-1.5 rounded-full bg-white/5 border border-white/10">
6267
<div className={`w-2 h-2 rounded-full ${indicatorColor} ${online === true ? 'animate-pulse' : ''}`} />
6368
<span className="text-xs text-gray-300 font-medium">{indicatorText}</span>

0 commit comments

Comments
 (0)