From 1ec30a6af10e8aa85ffe9a01ff2f94dbf18bf9c5 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Tue, 4 Jul 2023 15:01:33 +0200 Subject: [PATCH] fix workflow needs (#52180) ### What? I forgot to update the `needs` in the workflow --- .github/workflows/build_and_test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 38533b20a62fc..3fb92bfa7bebd 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -200,7 +200,14 @@ jobs: secrets: inherit report-test-results: - needs: ['test-dev', 'test-prod', 'test-integration', 'test-turbopack-dev'] + needs: + [ + 'test-dev', + 'test-prod', + 'test-integration', + 'test-turbopack-dev', + 'test-turbopack-integration', + ] uses: ./.github/workflows/build_reusable.yml with: skipForDocsOnly: 'yes' @@ -223,6 +230,7 @@ jobs: 'rust-check', 'test-next-swc-wasm', 'test-turbopack-dev', + 'test-turbopack-integration', ] if: always()