Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
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