Run all jobs in 'Check Code', do not halt at first failure.
Problem/Motivation
The internal 'Check Code' job currently stops at the first fault it finds. This can be annoying and means an overhead of extra commits and pipelines because the failed job does not report everything.
For example, there was a spelling error in MR199
https://git.drupalcode.org/issue/gitlab_templates-3444789/-/jobs/1497275
When the spelling was fixed, the next pipeline reported eslint warnings
https://git.drupalcode.org/issue/gitlab_templates-3444789/-/jobs/1497294
It should be easy to run all the checking jobs and collect the overall exit_code, as has been done in other jobs.