Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
4102bc2
wip adding auth to next template
ian Nov 3, 2025
d2d0c80
update agents md file
ian Nov 3, 2025
f89544e
fix
ian Nov 3, 2025
66e8a9c
Merge branch 'main' into startup-106-add-auth-to-next-template
ian Nov 5, 2025
3c69a50
auth finally working
ian Nov 5, 2025
ac88e23
lockfile, fixes
ian Nov 5, 2025
701448f
format
ian Nov 5, 2025
6e2eed4
moving folders
ian Nov 5, 2025
97a3463
remove repo container
ian Nov 5, 2025
413f63a
switching init testing to unit/integration
ian Nov 5, 2025
cefff95
adding vitest
ian Nov 5, 2025
1556284
tests
ian Nov 5, 2025
c4f1986
rename
ian Nov 5, 2025
74da467
fix typecheck, rename build scripts
ian Nov 5, 2025
291b60a
lint
ian Nov 5, 2025
3a39101
remove
ian Nov 5, 2025
f8ff6ce
rename
ian Nov 5, 2025
832818f
fix
ian Nov 5, 2025
a945f56
Update templates/packages/ui/src/components/sidebar.tsx
ian Nov 5, 2025
6e94f9d
Update templates/packages/ui/src/components/sidebar.tsx
ian Nov 5, 2025
e8a1eaa
Update templates/packages/ui/src/components/breadcrumb.tsx
ian Nov 5, 2025
a06c3ae
Update templates/packages/ui/src/components/input.tsx
ian Nov 5, 2025
d113b5a
Update packages/cli/src/cmd/README.test.md
ian Nov 5, 2025
5ad3074
Attach DB pool error listener only when creating new pool (merges int…
cubic-dev-ai[bot] Nov 5, 2025
c192ba2
Update templates/packages/ui/src/components/card.stories.tsx
ian Nov 5, 2025
ae35c85
Update templates/packages/ui/src/components/avatar.tsx
ian Nov 5, 2025
1b791a5
fixes
ian Nov 5, 2025
e2fcb55
fixes
ian Nov 5, 2025
8ee03ed
fix drizzle migrations
ian Nov 5, 2025
eb1dc75
fix typecheck
ian Nov 5, 2025
3e5203d
fixes
ian Nov 5, 2025
ed1d206
fix
ian Nov 5, 2025
3472678
fixes
ian Nov 5, 2025
5c8e067
lint
ian Nov 5, 2025
11e7f6a
Update templates/packages/ui/src/components/avatar.tsx
ian Nov 5, 2025
0ef98a7
Update templates/packages/ui/src/components/collapsible.tsx
ian Nov 5, 2025
ff5026d
Update templates/packages/ui/src/components/collapsible.tsx
ian Nov 5, 2025
a1ada34
fix
ian Nov 5, 2025
7e3d247
Fixes
ian Nov 5, 2025
4b27557
fixes
ian Nov 5, 2025
08f804d
fix, lockfile
ian Nov 5, 2025
fc60e83
fix ci builds
ian Nov 5, 2025
58d59af
fix: add --no-frozen-lockfile to test-cli workflow
ian Nov 5, 2025
bd88dc4
fix: add branch to --repo flag in test-cli and frozen-lockfile to bui…
ian Nov 5, 2025
c65bf54
fix
ian Nov 5, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- uses: ./.github/actions/setup

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Install template dependencies
run: pnpm install
run: pnpm install --frozen-lockfile
working-directory: ./templates/repo

- name: Build packages
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Reinstall with local packages
run: |
rm -rf node_modules pnpm-lock.yaml
pnpm install
pnpm install --no-frozen-lockfile
working-directory: ./tmp/repo

- name: Verify Install
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: ./.github/actions/setup

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Build packages
run: pnpm --filter "./packages/**" build
Expand All @@ -86,12 +86,16 @@ jobs:
- name: Reinstall with local packages
run: |
rm -rf node_modules pnpm-lock.yaml
pnpm install
pnpm install --no-frozen-lockfile
working-directory: ./tmp/repo

- name: Install app (with branch)
run: |
node $GITHUB_WORKSPACE/packages/cli/dist/cli.js add next --name next --repo "ian/startupkit/templates/next#${GITHUB_REF_NAME}"
node $GITHUB_WORKSPACE/packages/cli/dist/cli.js add next --name next --repo "ian/startupkit/templates/apps/next#${GITHUB_REF_NAME}"
working-directory: ./tmp/repo

- name: Reinstall after adding app
run: pnpm install --no-frozen-lockfile
working-directory: ./tmp/repo

- name: Verify Install
Expand All @@ -100,9 +104,9 @@ jobs:
working-directory: ./tmp/repo/apps/next

- name: Lint
run: pnpm run lint
working-directory: ./tmp/repo/apps/next
run: pnpm --filter "./apps/next" run lint
working-directory: ./tmp/repo

- name: Typecheck
run: pnpm run typecheck
working-directory: ./tmp/repo/apps/next
run: pnpm --filter "./apps/next" run typecheck
working-directory: ./tmp/repo
Loading