mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-12 06:06:37 +03:00
chore: remove FUNDING.yml and ci.yml, fix PR template checklist
This commit is contained in:
@@ -1 +0,0 @@
|
||||
github: paulbakaus
|
||||
@@ -15,7 +15,7 @@
|
||||
## Checklist
|
||||
|
||||
- [ ] Source files updated in `source/`
|
||||
- [ ] `bun run build` ran successfully and `dist/` is committed
|
||||
- [ ] `bun run build` ran successfully
|
||||
- [ ] `bun test` passes
|
||||
- [ ] Tested with at least one provider (Cursor / Claude Code / Gemini CLI / Codex)
|
||||
- [ ] README / DEVELOP.md updated if needed
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, master]
|
||||
pull_request:
|
||||
branches: [main, master]
|
||||
|
||||
jobs:
|
||||
build-and-test:
|
||||
name: Build & Test
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
bun-version: latest
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install
|
||||
|
||||
- name: Build all provider formats
|
||||
run: bun run build
|
||||
|
||||
- name: Run tests
|
||||
run: bun test
|
||||
|
||||
- name: Verify dist output exists
|
||||
run: |
|
||||
echo "Verifying dist directories..."
|
||||
for dir in cursor claude-code gemini codex; do
|
||||
if [ -d "dist/$dir" ]; then
|
||||
echo "✅ dist/$dir OK"
|
||||
else
|
||||
echo "❌ dist/$dir is missing!"
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user