https://github.com/ranjithdb/gh-actions-nodejs-01
https://github.com/ranjithdb/gh-actions-nodejs-01
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ranjithdb/gh-actions-nodejs-01
- Owner: ranjithdb
- Created: 2025-03-01T08:41:51.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-01T08:46:04.000Z (over 1 year ago)
- Last Synced: 2025-03-01T09:26:30.187Z (over 1 year ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gh-actions-nodejs-01
## Node.js CI
This is a simple Node.js project with GitHub Actions integration. The project includes:
- A basic Express server
- Automated tests using Jest and Supertest
- A GitHub Actions workflow that builds and tests on Node.js 18.x, 20.x, and 22.x
## Setup
Clone the repository
Install dependencies:
```sh
npm install
```
Run the server:
```sh
npm start
```
Run tests:
```sh
npm test
```