Skip to content

Commit 136727d

Browse files
committed
Bump nyc from 15.1.0 to 17.1.0
Closes gh-49 Signed-off-by: Robert Winch <362503+rwinch@users.noreply.github.com>
1 parent de12752 commit 136727d

3 files changed

Lines changed: 60 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Node.js
2020
uses: actions/setup-node@v3
2121
with:
22-
node-version: '16'
22+
node-version: '18'
2323
cache: 'npm'
2424
- name: Install dependencies
2525
run: npm ci

package-lock.json

Lines changed: 56 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"scripts": {
2121
"coverage": "nyc _mocha",
22-
"coverage-strict": "nyc --branches=100 --lines=100 _mocha",
22+
"coverage-strict": "nyc --concurrency=1 --branches=100 --lines=100 _mocha",
2323
"build": "npm test && npm run lint",
2424
"format": "node npm/format.js lib,test,npm",
2525
"lint": "eslint \"{lib,test,npm}/**/*.js\"",
@@ -70,13 +70,14 @@
7070
"eslint": "~8.30",
7171
"eslint-config-standard": "~17.1",
7272
"mocha": "~11.7",
73-
"nyc": "~15.1",
73+
"nyc": "~17.1",
7474
"prettier-eslint": "~15.0"
7575
},
7676
"nyc": {
7777
"all": true,
7878
"cacheDir": "node_modules/.cache/nyc",
7979
"checkCoverage": true,
80+
"concurrency": 1,
8081
"include": [
8182
"lib/*.js"
8283
],

0 commit comments

Comments
 (0)