-
Notifications
You must be signed in to change notification settings - Fork 80
160 lines (126 loc) · 4.54 KB
/
test.yml
File metadata and controls
160 lines (126 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
name: Test and Validate
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
defaults:
run:
working-directory: ./claude-config-composer
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ./claude-config-composer/node_modules
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Run TypeScript compilation
run: npm run build
- name: Run tests
run: npm test
- name: Validate configurations
run: |
echo "Testing configuration list..."
node dist/cli.js list
- name: Test config generation
run: |
echo "Testing config generation..."
node dist/cli.js nextjs-15 --output .test-output --no-backup --no-gitignore
- name: Validate generated config
run: |
if [ ! -f ".test-output/CLAUDE.md" ]; then
echo "Error: CLAUDE.md not generated"
exit 1
fi
if [ ! -d ".test-output/.claude" ]; then
echo "Error: .claude directory not generated"
exit 1
fi
echo "✅ Configuration generation test passed"
validate-configs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./claude-config-composer
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Validate all configurations exist
run: |
echo "Validating configuration integrity..."
# Check that all registered configs have directories in new structure
CONFIGS=(
"frameworks/nextjs-15"
"ui/shadcn"
"ui/tailwindcss"
"tooling/vercel-ai-sdk"
"databases/drizzle"
"mcp-servers/memory-mcp-server"
"mcp-servers/token-gated-mcp-server"
)
for config in "${CONFIGS[@]}"; do
if [ ! -d "../configurations/$config" ]; then
echo "❌ Missing configuration directory: $config"
exit 1
fi
if [ ! -f "../configurations/$config/CLAUDE.md" ]; then
echo "❌ Missing CLAUDE.md in: $config"
exit 1
fi
if [ ! -f "../configurations/$config/README.md" ]; then
echo "❌ Missing README.md in: $config"
exit 1
fi
echo "✅ Configuration valid: $config"
done
echo "✅ All configurations validated successfully!"
- name: Test CLI functionality
run: |
echo "Testing CLI list command..."
OUTPUT=$(node dist/cli-simple.js list)
# Check that all expected configs appear in list
if ! echo "$OUTPUT" | grep -q "Next.js 15"; then
echo "❌ Next.js 15 not found in config list"
exit 1
fi
if ! echo "$OUTPUT" | grep -q "shadcn/ui"; then
echo "❌ shadcn/ui not found in config list"
exit 1
fi
if ! echo "$OUTPUT" | grep -q "Tailwind CSS"; then
echo "❌ Tailwind CSS not found in config list"
exit 1
fi
if ! echo "$OUTPUT" | grep -q "Vercel AI SDK"; then
echo "❌ Vercel AI SDK not found in config list"
exit 1
fi
if ! echo "$OUTPUT" | grep -q "Drizzle ORM"; then
echo "❌ Drizzle ORM not found in config list"
exit 1
fi
echo "✅ CLI list command working correctly!"