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
25 changes: 23 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,31 @@ jobs:
env:
DATABASE_URL: postgresql://user:pass@localhost:5432/db

scaffold-smoke:
runs-on: ubuntu-latest
needs: [lint, typecheck]
steps:
- uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'

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

- name: Run scaffold smoke matrix
run: pnpm run smoke:create-blitzpack:ci

# Tests and build run after lint/typecheck pass
test:
runs-on: ubuntu-latest
needs: [lint, typecheck]
needs: [lint, typecheck, scaffold-smoke]

# PostgreSQL service for integration tests
services:
Expand Down Expand Up @@ -111,7 +132,7 @@ jobs:

build:
runs-on: ubuntu-latest
needs: [lint, typecheck]
needs: [lint, typecheck, scaffold-smoke]
steps:
- uses: actions/checkout@v4

Expand Down
14 changes: 14 additions & 0 deletions create-blitzpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ pnpm dev # Start development

Full documentation: [github.com/CarboxyDev/blitzpack](https://github.com/CarboxyDev/blitzpack)

## Scaffold Smoke Checks (Repository Maintenance)

Run from repository root:

```bash
pnpm smoke:create-blitzpack
```

For a wider matrix:

```bash
pnpm smoke:create-blitzpack:full
```

## License

MIT
2 changes: 1 addition & 1 deletion create-blitzpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-blitzpack",
"version": "0.1.20",
"version": "0.1.21",
"description": "Create a new Blitzpack project - full-stack TypeScript monorepo with Next.js and Fastify",
"type": "module",
"bin": {
Expand Down
Loading