An open API service indexing awesome lists of open source software.

https://github.com/ranjithdb/gh-actions-nodejs-01


https://github.com/ranjithdb/gh-actions-nodejs-01

Last synced: 5 months ago
JSON representation

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
```