Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gabrielrufino/node-ci

Continuous Integration for Node.js projects
https://github.com/gabrielrufino/node-ci

actions ci github node workflow

Last synced: 7 days ago
JSON representation

Continuous Integration for Node.js projects

Awesome Lists containing this project

README

        

# Node CI

Continuous Integration for Node.js projects

## Getting started

```yml
name: CI

on:
- push

jobs:
node-ci:
name: Node CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gabrielrufino/node-ci@main
```