From 9971d717016ab997b28c6e1a92cb4f625952cdda Mon Sep 17 00:00:00 2001 From: hiroki osame Date: Tue, 30 Nov 2021 17:50:21 -0500 Subject: [PATCH] docs: recommend npm ci --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3e01b7fe2..629564e86 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ steps: - uses: actions/setup-node@v2 with: node-version: '14' -- run: npm install +- run: npm ci - run: npm test ``` @@ -55,7 +55,7 @@ steps: with: node-version: '14' cache: 'npm' -- run: npm install +- run: npm ci - run: npm test ``` @@ -68,7 +68,7 @@ steps: node-version: '14' cache: 'npm' cache-dependency-path: subdir/package-lock.json -- run: npm install +- run: npm ci - run: npm test ``` @@ -87,7 +87,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - - run: npm install + - run: npm ci - run: npm test ``` ## Advanced usage