Skip to content

Commit c5026f6

Browse files
committed
Disable (for now at least) codeclimate, so builds work on our fork
This previously worked for one test run for a quick PR, but having recreated the repo it's now broken, and it's impossible to reset CodeClimate with the new repo for some reason. Not especially important, so lets drop it.
1 parent 2602e57 commit c5026f6

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,3 @@ jobs:
2222

2323
- run: npm ci
2424
- run: npm test
25-
- run: npm run codeclimate
26-
env:
27-
CODECLIMATE_REPO_TOKEN: ${{ secrets.CODECLIMATE_REPO_TOKEN }}

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@
5353
"pretest": "standard && echint",
5454
"test": "mocha --no-timeouts",
5555
"posttest": "npm run coverage",
56-
"coverage": "istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot",
57-
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
56+
"coverage": "istanbul cover --dir coverage _mocha -- --fgrep 'Request Validation' --invert -R dot"
5857
},
5958
"standard": {
6059
"env": "mocha",
@@ -70,7 +69,6 @@
7069
]
7170
},
7271
"devDependencies": {
73-
"codeclimate-test-reporter": "^0.5.1",
7472
"echint": "^4.0.2",
7573
"glob": "^6.0.1",
7674
"istanbul": "^0.4.0",

0 commit comments

Comments
 (0)