[ci] Don't erroneously mark failures as successes
Randomly noticed this when I looked at a recent [DevTools regression test run](https://github.com/facebook/react/actions/runs/13578385011). I don't recall why we added `continue-on-error` previously, but I believe it was to keep all jobs in the matrix running even if one were to fail, in order to fully identify any failures from code changes like build or test failures. There is now a `fail-fast` option which does this. [`continue-on-error`](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#jobsjob_idcontinue-on-error) now means: > Prevents a workflow run from failing when a job fails. Set to true to allow a workflow run to pass when this job fails. so it's not correct to use it.
Showing
- .github/workflows/compiler_typescript.yml 1 addition, 1 deletion.github/workflows/compiler_typescript.yml
- .github/workflows/devtools_regression_tests.yml 2 additions, 2 deletions.github/workflows/devtools_regression_tests.yml
- .github/workflows/runtime_build_and_test.yml 5 additions, 3 deletions.github/workflows/runtime_build_and_test.yml
- .github/workflows/runtime_eslint_plugin_e2e.yml 1 addition, 1 deletion.github/workflows/runtime_eslint_plugin_e2e.yml