Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/test-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ on:
push:
branches:
- main
- startup-90-remove-workos-switch-to-better-auth
pull_request:

jobs:
test-cli:
name: Test StartupKit CLI Project Generator
name: CLI Project Generator
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -138,7 +137,6 @@ jobs:
"packages/ui/package.json"
"packages/utils/package.json"
"packages/analytics/package.json"
"packages/jobs/package.json"
"packages/emails/package.json"
)

Expand Down Expand Up @@ -421,10 +419,9 @@ jobs:
echo "CLI dist files:"
ls -lah packages/cli/dist/ || echo "dist directory does not exist"

test-cli-comprehensive:
test-cli-edge-cases:
name: CLI Edge Cases and Validation
runs-on: ubuntu-latest
needs: test-cli

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -541,7 +538,7 @@ jobs:
test-cli-summary:
name: CLI Testing Summary
runs-on: ubuntu-latest
needs: [test-cli, test-cli-comprehensive]
needs: [test-cli, test-cli-edge-cases]
if: always()

steps:
Expand All @@ -551,9 +548,9 @@ jobs:
echo ""
echo "📊 Test Results Summary:"
echo " - Basic CLI tests: ${{ needs.test-cli.result }}"
echo " - Edge case tests: ${{ needs.test-cli-comprehensive.result }}"
echo " - Edge case tests: ${{ needs.test-cli-edge-cases.result }}"
echo ""
if [ "${{ needs.test-cli.result }}" = "success" ] && [ "${{ needs.test-cli-comprehensive.result }}" = "success" ]; then
if [ "${{ needs.test-cli.result }}" = "success" ] && [ "${{ needs.test-cli-edge-cases.result }}" = "success" ]; then
echo "✅ All CLI tests passed successfully!"
exit 0
else
Expand Down
26 changes: 0 additions & 26 deletions templates/repo/.github/workflows/jobs-build.yml

This file was deleted.

31 changes: 0 additions & 31 deletions templates/repo/.github/workflows/jobs-deploy.yml

This file was deleted.

6 changes: 0 additions & 6 deletions templates/repo/pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,6 @@ catalogs:
"@rudderstack/analytics-js": 3.14.0
"@vercel/analytics": 1.3.1

react18:
react: 18.3.1
react-dom: 18.3.1
"@types/react": 18.3.11
"@types/react-dom": 18.3.1

react19:
react: 19.0.0
react-dom: 19.0.0
Expand Down
Loading