Skip to content

Commit 3c57356

Browse files
authored
Merge pull request #20 from mathmelo/feature/change-sonarcloud-default-branch
ci: change sonar cloud default branch
2 parents 93b2508 + fba4a40 commit 3c57356

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: ci-node-workflow
22
on:
33
pull_request:
4-
types: [opened, synchronize, reopened]
54
branches:
65
- develop
76
jobs:

index.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,19 @@ function potencia(a, b) {
2121
function dobra(a) {
2222
return a * 2;
2323
}
24+
2425
function triplica(a) {
2526
return a * 3;
2627
}
28+
2729
function adiciona100(a) {
2830
return a + 100;
2931
}
32+
3033
function adiciona200(a) {
3134
return a + 200;
3235
}
36+
3337
function adiciona300(a) {
3438
return a + 300;
3539
}
@@ -40,7 +44,4 @@ module.exports = {
4044
subtracao,
4145
potencia,
4246
divisao,
43-
dobra,
44-
triplica,
45-
adiciona100,
4647
};

0 commit comments

Comments
 (0)