Skip to content

Commit

Permalink
docs: update test runners and add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
remy committed Jul 7, 2023
1 parent 83ef51d commit 8ded28c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/node.js.yml
Expand Up @@ -5,27 +5,26 @@ name: tests

on:
push:
branches: [ main ]
branches: [main]
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [10.x, 12.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
cache: npm
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
cache: npm
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -9,7 +9,7 @@ nodemon is a tool that helps develop Node.js based applications by automatically
nodemon does **not** require *any* additional changes to your code or method of development. nodemon is a replacement wrapper for `node`. To use `nodemon`, replace the word `node` on the command line when executing your script.

[![NPM version](https://badge.fury.io/js/nodemon.svg)](https://npmjs.org/package/nodemon)
[![Travis Status](https://travis-ci.org/remy/nodemon.svg?branch=master)](https://travis-ci.org/remy/nodemon) [![Backers on Open Collective](https://opencollective.com/nodemon/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/nodemon/sponsors/badge.svg)](#sponsors)
[![Backers on Open Collective](https://opencollective.com/nodemon/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/nodemon/sponsors/badge.svg)](#sponsors)

# Installation

Expand Down
7 changes: 7 additions & 0 deletions TODO.md
@@ -0,0 +1,7 @@
# TODO

A rough outline of things I'd like to do with nodemon after 13 years of supporting the software:

- Upgrade mocha (I tried Jest once, but it can't fork and monitor the outputs, which is how most of the tests run)
- Switch to prettier from jshint (and commit formatted code)
- Sweep code for unused or overly complicated code(!)

0 comments on commit 8ded28c

Please sign in to comment.