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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@ jobs:
exit 1
fi

- name: Run optional Node checks
- name: Run Node verification
run: |
set -euo pipefail

if [ ! -f package.json ]; then
echo "No package.json found; skipping Node checks."
echo "TODO: add install, lint, test, typecheck, or build commands when this template becomes an app or package."
echo "No package.json found; skipping Node verification."
exit 0
fi

Expand All @@ -64,5 +63,7 @@ jobs:
npm install
fi

npm run release:check
bash scripts/validate.sh
npm run check
npm test
npm run build
npm run smoke
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,19 @@ bash scripts/validate.sh

Keep changes small, local-first, and fixture-backed. See [CONTRIBUTING.md](CONTRIBUTING.md) and [SECURITY.md](SECURITY.md).

## Development

Use Node.js 20 or newer. Run these checks before opening a PR:

```sh
npm run build
npm run check
npm test
npm run smoke
npm run package:smoke
npm run release:check
```

## License

MIT
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"dist",
"README.md",
"LICENSE",
"SECURITY.md"
"SECURITY.md",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc",
Expand Down