Skip to content

Commit

Permalink
Fix action dependency (#6039)
Browse files Browse the repository at this point in the history
### Description

Small bug in #6038, didn't remove the dependencies from other tasks.

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
timneutkens authored and Zertsov committed Sep 27, 2023
1 parent 2e6e95d commit df02f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nextjs-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
# Collect integration test results from execute_tests,
# Store it as github artifact for next step to consume.
collect_nextjs_integration_stat:
needs: [test-dev, test-prod, test-integration]
needs: [test-dev, test-integration]
name: Next.js integration test status report
runs-on: ubuntu-latest-8-core-oss
if: always()
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
slack-payload.json
upload_test_trace:
needs: [test-dev, test-prod, test-integration]
needs: [test-dev, test-integration]
name: Upload test trace to datadog
runs-on: ubuntu-latest-8-core-oss
if: always()
Expand Down

0 comments on commit df02f73

Please sign in to comment.