From cb1c8b9b81d780814d01f1b66c70107744fd6da5 Mon Sep 17 00:00:00 2001 From: Konstantin Popov Date: Thu, 18 Nov 2021 13:49:45 +0300 Subject: [PATCH 1/3] docs: Fix typo in faq.md (#1950) [skip ci] --- faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faq.md b/faq.md index f782f26..b15e532 100644 --- a/faq.md +++ b/faq.md @@ -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 From 581c6410b75969eb1982cf6daa74c567d2521b6e Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Thu, 18 Nov 2021 11:50:13 +0100 Subject: [PATCH 2/3] ci(node.js): workflow uses 'npm' cache (#1934) [skip ci] --- .github/workflows/node.js.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index f4420f9..fc3c3ed 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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 From 53422afb61c0e3a0e242d5a4073abf61380ab8aa Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Thu, 18 Nov 2021 11:50:31 +0100 Subject: [PATCH 3/3] ci(release): workflow uses 'npm' cache (#1933) [skip ci] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 172d427..d2827c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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