# GitHub Actions Status Badges

Add these badges to your main README.md to show workflow status:

```markdown
[![CI](https://github.com/lullabot/lullabot-project/actions/workflows/ci.yml/badge.svg)](https://github.com/lullabot/lullabot-project/actions/workflows/ci.yml)
[![Release](https://github.com/lullabot/lullabot-project/actions/workflows/release.yml/badge.svg)](https://github.com/lullabot/lullabot-project/actions/workflows/release.yml)
[![npm version](https://badge.fury.io/js/lullabot-project.svg)](https://badge.fury.io/js/lullabot-project)
[![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
```

## Badge Descriptions

- **CI Badge:** Shows the status of the continuous integration workflow
- **Release Badge:** Shows the status of the release workflow
- **NPM Version Badge:** Shows the current version published to NPM
- **Node.js Version Badge:** Shows the minimum required Node.js version
- **License Badge:** Shows the project license

## Customization

To customize the badges for your repository:

1. Replace `lullabot/lullabot-project` with your GitHub username/repository
2. Replace `lullabot-project` with your NPM package name
3. Adjust the Node.js version requirement as needed
4. Update the license if different from MIT
