Skip to content

Commit

Permalink
Merge branch 'main' of github.com:remy/nodemon
Browse files Browse the repository at this point in the history
* 'main' of github.com:remy/nodemon:
  ci(release): workflow uses 'npm' cache (#1933)
  ci(node.js): workflow uses 'npm' cache (#1934)
  docs: Fix typo in faq.md (#1950)
  • Loading branch information
remy committed Nov 19, 2021
2 parents 141e58c + 53422af commit 242f9f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/node.js.yml
Expand Up @@ -24,6 +24,7 @@ jobs:
- 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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Expand Up @@ -16,8 +16,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
cache: npm
node-version: 14
- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion faq.md
Expand Up @@ -96,7 +96,7 @@ nodemon (from 1.4.2 onwards) uses [Chokidar](https://www.npmjs.com/package/choki

If you find your files aren't being monitored, either nodemon isn't restarting, or it reports that zero files are being watched, then you may need the polling mode.

To enable polling use the the legacy flag either via the terminal:
To enable polling use the legacy flag either via the terminal:

```shell
$ nodemon --legacy-watch
Expand Down

0 comments on commit 242f9f7

Please sign in to comment.