Files
workflow/package.json
shokollm d9bc27cb4a Add resilient setup script with pnpm auto-install
- scripts/setup.sh: Checks for pnpm, installs via corepack/npm if missing
- package.json: Updated to call bash script instead of node directly
- README.md: Updated with better quick start and troubleshooting
2026-04-18 12:38:16 +00:00

12 lines
307 B
JSON

{
"name": "workflow-template",
"version": "1.0.0",
"description": "Standard issue-based workflow template for teams",
"private": true,
"scripts": {
"setup": "bash scripts/setup.sh",
"validate:issues": "node .hooks/issue-linter.js",
"test": "echo \"Add your test commands here\""
}
}