1
0
Fork 0

fix(build): add codeclimate target

This commit is contained in:
Sean Sube 2023-01-01 21:41:54 -06:00
parent e5b6565958
commit 6afa62ecbe
1 changed files with 5 additions and 1 deletions

View File

@ -7,4 +7,8 @@ run-graph:
node --require esm ./out/index.js graph-labels --config $(RUN_CONFIG)
run-version:
node --require esm ./out/index.js --version
node --require esm ./out/index.js --version
upload-climate:
cc-test-reporter format-coverage -t lcov -o $(TARGET_PATH)/coverage/codeclimate.json -p $(ROOT_PATH) $(TARGET_PATH)/coverage/lcov.info
cc-test-reporter upload-coverage --debug -i $(TARGET_PATH)/coverage/codeclimate.json -r "$(shell echo "${CODECLIMATE_SECRET}" | base64 -d)"