-
|
it is my first time using I'm trying to run a script that receives as a parameter a previous step output: this is the function buildMatrix(changedFiles, b, c){
console.log('Matrix changedFiles:', changedFiles);
console.log('Matrix b:', b);
console.log('Matrix c:',c);
return {files: changedFiles};
}
module.exports = buildMatrix;and I'm getting It looks like the problem is when passing the parameters to the script, but I don't know how should be done. If someone can help me, please |
Beta Was this translation helpful? Give feedback.
Answered by
clauBv23
Aug 9, 2023
Replies: 1 comment
-
|
Solved it changing by |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
clauBv23
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solved it changing
by