Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme slightly updated #2

Merged
merged 4 commits into from
Jul 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,18 @@ jobs:
command: *defaults_Dependencies
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install tape, tapes and tap-xunit
command: npm install -g tape tapes tap-xunit
keys:
- dependency-cache-{{ checksum "package.json" }}
- dependency-cache-
- run:
name: Create dir for test results
command: mkdir -p ./test/results
- run:
name: Install tape and tap-xunit
command: npm install -g tape tap-xunit
- run:
name: Install tapes
command: npm install -g tapes
- run:
name: Execute unit tests
command: npm -s run test > ./test/results/tape.xml
Expand All @@ -177,7 +182,9 @@ jobs:
command: *defaults_awsCliDependencies
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
keys:
- dependency-cache-{{ checksum "package.json" }}
- dependency-cache-
- run:
name: Execute code coverage check
command: npm -s run cover
Expand All @@ -192,7 +199,7 @@ jobs:
if [ "${CIRCLE_BRANCH}" == "master" ];
then
echo "Sending lcov.info to SonarQube..."
aws s3 cp coverage/lcov.info $AWS_S3_DIR_SONARQUBE/central-ledger/lcov.info
aws s3 cp coverage/lcov.info $AWS_S3_DIR_SONARQUBE/central-settlement/lcov.info
else
echo "Not a release (env CIRCLE_BRANCH != 'master'), skipping sending lcov.info to SonarQube."
fi
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
The service is created using the hapi-openapi plugin.
The current Swagger API documentation can be found [here](./config/swagger.json)
The API is still only a design and the current code is the boilerplate for further development.

This is part of the Mojaloop project.