Add SonarQube workflow and test file
Some checks failed
SonarQube Analysis / sonarqube (push) Failing after 46s
Some checks failed
SonarQube Analysis / sonarqube (push) Failing after 46s
This commit is contained in:
15
app.js
Normal file
15
app.js
Normal file
@@ -0,0 +1,15 @@
|
||||
// Test file for SonarQube analysis
|
||||
function greet(name) {
|
||||
if (name == null) { // Bug: should use === for strict comparison
|
||||
return "Hello, World!";
|
||||
}
|
||||
return "Hello, " + name + "!";
|
||||
}
|
||||
|
||||
// Code smell: unused variable
|
||||
var unusedVar = 42;
|
||||
|
||||
// Security hotspot: hardcoded password
|
||||
const password = "admin123";
|
||||
|
||||
console.log(greet("SonarQube"));
|
||||
Reference in New Issue
Block a user