-
Notifications
You must be signed in to change notification settings - Fork 4
pipeline architecture and workflow updates #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
chrisparnin
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There were a few minor issues, some suggestions, as well as some bugs found.
lib/read/setup.js
Outdated
| /** | ||
| * Setup the env needed for execution | ||
| * @param {String} doc path to steps.yml to inline md file | ||
| * @param {String} html path to html, if doc is steps.yml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this read, if doc is not specified in steps.yml.
What happens if there is a file in steps.yml and there is a html file provided. Which one gets precedence?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This probably should read:
@param {String} Override html file referenced in steps.yml. Otherwise, if no html file is specified in steps.yml, steps will be executed on provided file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addressed in 9ab4777.
| case 'command': | ||
| result = await op.run(cell.content, cell.user, cell.persistent); | ||
| break; | ||
| default: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to support all the other operations :)
fix: setting exit code when report=true/false
chrisparnin
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
pipefail=true default in local connector
Pipeline architecture and workflow updates (WIP).