We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6c56d6 commit 2602e57Copy full SHA for 2602e57
.github/workflows/ci.yml
@@ -23,3 +23,5 @@ jobs:
23
- run: npm ci
24
- run: npm test
25
- run: npm run codeclimate
26
+ env:
27
+ CODECLIMATE_REPO_TOKEN: ${{ secrets.CODECLIMATE_REPO_TOKEN }}
package.json
@@ -52,9 +52,9 @@
52
"quick": "mocha --no-timeouts --fgrep 'Request Validation' --invert",
53
"pretest": "standard && echint",
54
"test": "mocha --no-timeouts",
55
- "posttest": "exit 0 && npm run coverage",
+ "posttest": "npm run coverage",
56
"coverage": "istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot",
57
- "codeclimate": "codeclimate < coverage/lcov.info"
+ "codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
58
},
59
"standard": {
60
"env": "mocha",
0 commit comments