-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- '6' | ||
- '7' | ||
- '8' | ||
script: "make" | ||
- '9' | ||
script: | ||
- make | ||
- sonar-scanner | ||
after_success: "make coveralls" | ||
addons: | ||
sonarcloud: | ||
organization: "felipernb-github" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# must be unique in a given SonarQube instance | ||
sonar.projectKey=algorithmsjs | ||
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1. | ||
sonar.projectName=algorithms.js | ||
sonar.projectVersion=0.11.0 | ||
|
||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows. | ||
# This property is optional if sonar.modules is set. | ||
sonar.sources=. | ||
|
||
# Encoding of the source code. Default is default system encoding | ||
#sonar.sourceEncoding=UTF-8 |