Skip to content

Commit 8ded28c

Browse files
committedJul 7, 2023
docs: update test runners and add TODO
1 parent 83ef51d commit 8ded28c

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed
 

‎.github/workflows/node.js.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,26 @@ name: tests
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [main]
99
pull_request:
10-
branches: [ main ]
10+
branches: [main]
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

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

2221
steps:
23-
- uses: actions/checkout@v2
24-
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
26-
with:
27-
cache: npm
28-
node-version: ${{ matrix.node-version }}
29-
- run: npm ci
30-
- run: npm run build --if-present
31-
- run: npm test
22+
- uses: actions/checkout@v2
23+
- name: Use Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v2
25+
with:
26+
cache: npm
27+
node-version: ${{ matrix.node-version }}
28+
- run: npm ci
29+
- run: npm run build --if-present
30+
- run: npm test

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ nodemon is a tool that helps develop Node.js based applications by automatically
99
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.
1010

1111
[![NPM version](https://badge.fury.io/js/nodemon.svg)](https://npmjs.org/package/nodemon)
12-
[![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)
12+
[![Backers on Open Collective](https://opencollective.com/nodemon/backers/badge.svg)](#backers) [![Sponsors on Open Collective](https://opencollective.com/nodemon/sponsors/badge.svg)](#sponsors)
1313

1414
# Installation
1515

‎TODO.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# TODO
2+
3+
A rough outline of things I'd like to do with nodemon after 13 years of supporting the software:
4+
5+
- Upgrade mocha (I tried Jest once, but it can't fork and monitor the outputs, which is how most of the tests run)
6+
- Switch to prettier from jshint (and commit formatted code)
7+
- Sweep code for unused or overly complicated code(!)

0 commit comments

Comments
 (0)
Please sign in to comment.