Skip to content

Commit 4377092

Browse files
committed
Merge updates from project template
Signed-off-by: Kevin Locke <[email protected]>
2 parents 739372c + a76c2c4 commit 4377092

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Display Node.js version
3535
run: node --version
3636
- name: Install dependencies
37-
run: npm install
37+
run: npm install --strict-peer-deps
3838
- name: Lint
3939
run: npm run lint
4040
- name: Run tests
@@ -86,7 +86,7 @@ jobs:
8686
- name: Display Node.js version
8787
run: node --version
8888
- name: Install dependencies
89-
run: npm install
89+
run: npm install --strict-peer-deps
9090
- name: Run tests
9191
run: npm run test-unit-cov
9292
# Note: Not uploading to Codecov, due to poor support for matrix builds

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@
5252
"posttest-unit": "rimraf test-repos",
5353
"test-unit-cov": "nyc --reporter=lcov --reporter=text npm run test-unit",
5454
"upload-cov": "codecov < ./coverage/lcov.info && coveralls < ./coverage/lcov.info",
55-
"version": "npm run changelog && echo && echo === Please edit CHANGELOG.md as desired, then exit === && echo && $npm_config_shell && git commit -m \"Update CHANGELOG.md for $npm_package_version\" CHANGELOG.md",
55+
"version": "npm run changelog && echo && echo === Please edit CHANGELOG.md as desired, then exit === && echo && \"${npm_config_shell:-${SHELL:-bash}}\" && git commit -m \"Update CHANGELOG.md for $npm_package_version\" CHANGELOG.md",
5656
"version-deps": "npm install conventional-changelog-cli david depcheck git-branch-is hub-ci-status"
5757
},
5858
"dependencies": {
5959
"commander": "^7.0.0"
6060
},
6161
"devDependencies": {
62-
"@kevinoid/eslint-config": "^14.0.0",
62+
"@kevinoid/eslint-config": "^15.0.0",
6363
"codecov": "^3.0.0",
6464
"coveralls": "^3.0.0",
6565
"escape-string-regexp": "^4.0.0",
@@ -69,7 +69,7 @@
6969
"eslint-plugin-jsdoc": "^31.0.7",
7070
"eslint-plugin-node": "^11.0.0",
7171
"eslint-plugin-promise": "^4.2.1",
72-
"eslint-plugin-unicorn": "^27.0.0",
72+
"eslint-plugin-unicorn": "^28.0.0",
7373
"jsdoc": "^3.6.0",
7474
"mocha": "^8.0.1",
7575
"nodecat": "^2.0.0",

0 commit comments

Comments
 (0)