Skip to content

Commit

Permalink
fix workflow needs (#52180)
Browse files Browse the repository at this point in the history
### What?

I forgot to update the `needs` in the workflow
  • Loading branch information
sokra authored and shuding committed Jul 8, 2023
1 parent 8e6bbf6 commit 1ec30a6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -223,6 +230,7 @@ jobs:
'rust-check',
'test-next-swc-wasm',
'test-turbopack-dev',
'test-turbopack-integration',
]

if: always()
Expand Down

0 comments on commit 1ec30a6

Please sign in to comment.