I have a series of stages that perform quick checks. I want to perform them all, even if there are failures. For example:
stage(\'one\') { node {
I resolved that, using post actions: https://jenkins.io/doc/pipeline/tour/post/
post { always { ... } }