Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: recommend npm ci #371

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -22,7 +22,7 @@ steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- run: npm ci
- run: npm test
```

Expand Down Expand Up @@ -55,7 +55,7 @@ steps:
with:
node-version: '14'
cache: 'npm'
- run: npm install
- run: npm ci
- run: npm test
```

Expand All @@ -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
```

Expand All @@ -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
Expand Down