ci: add missing tests to all-green dependency array (#9825)

Adds the missing tests to the `needs:` dependency array for `all-green`
step in CI so that all-green doesn't pass if these tests fail or are in
progress

```
- build-templates
- tests-types
- tests-type-generation
```
This commit is contained in:
Paul
2024-12-09 09:36:58 -06:00
committed by GitHub
parent e746d7afd8
commit 84abfdf84a

View File

@@ -492,9 +492,12 @@ jobs:
needs: needs:
- lint - lint
- build - build
- build-templates
- tests-unit - tests-unit
- tests-int - tests-int
- tests-e2e - tests-e2e
- tests-types
- tests-type-generation
steps: steps:
- if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }} - if: ${{ always() && (contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}