We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93b2508 + fba4a40 commit 3c57356Copy full SHA for 3c57356
.github/workflows/ci.yaml
@@ -1,7 +1,6 @@
1
name: ci-node-workflow
2
on:
3
pull_request:
4
- types: [opened, synchronize, reopened]
5
branches:
6
- develop
7
jobs:
index.js
@@ -21,15 +21,19 @@ function potencia(a, b) {
21
function dobra(a) {
22
return a * 2;
23
}
24
+
25
function triplica(a) {
26
return a * 3;
27
28
29
function adiciona100(a) {
30
return a + 100;
31
32
33
function adiciona200(a) {
34
return a + 200;
35
36
37
function adiciona300(a) {
38
return a + 300;
39
@@ -40,7 +44,4 @@ module.exports = {
40
44
subtracao,
41
45
potencia,
42
46
divisao,
43
- dobra,
- triplica,
- adiciona100,
47
};
0 commit comments