TIL, 2021-12-02, Jenkins optimisations
- Jenkins: Is written in Groovy.
- Groovy string interpolation done with “” strings, not ‘’.
env.BRANCH_NAME
to get the branch. Just this line can speed a lot of the CI up.
- Default inputs in Angular: Reference
- Something to think about: Reference
- Setting a default value to a component input doesn’t prevent it being override with an empty value from it’s container.
process.exit
to exit a Node program.