What problem does it solve?
Automates the boilerplate CI/CD setup for Node.js projects by provisioning GitHub Actions workflows, pnpm caching, and deployment to Cloudflare Pages via Wrangler, reducing manual configuration.
Core Features & Use Cases
- Scaffolds .github/workflows/ with two workflows: CI (runs on PRs) and Deploy (runs on push to main)
- Implements a pnpm caching strategy with a store-dir inside node_modules
- Automatically detects project shape (package.json scripts, Wrangler config, Node version) and configures workflows accordingly
- Generates ci.yml and deploy.yml with steps for checkout, pnpm setup, node setup, caching, install, lint, typecheck, test, build, and deployment
- Provides guidance to adapt workflows to projects lacking certain scripts or config and to set up necessary secrets (CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID)
Quick Start
Apply this skill to generate GitHub Actions CI/CD workflows and Cloudflare deployment configuration for your repository.