|
31 | 31 | ${{ github.workspace }}/node_modules |
32 | 32 | ${{ github.workspace }}/packages/*/node_modules |
33 | 33 | ${{ github.workspace }}/dev-packages/*/node_modules |
34 | | - ~/.cache/ms-playwright/ |
35 | 34 | ~/.cache/mongodb-binaries/ |
36 | 35 |
|
37 | 36 | # DEPENDENCY_CACHE_KEY: can't be set here because we don't have access to yarn.lock |
@@ -580,7 +579,7 @@ jobs: |
580 | 579 | job_nextjs_integration_test: |
581 | 580 | name: Nextjs (Node ${{ matrix.node }}) Tests |
582 | 581 | needs: [job_get_metadata, job_build] |
583 | | - if: needs.job_get_metadata.outputs.changed_nextjs == 'true' || github.event_name != 'pull_request' |
| 582 | + if: false |
584 | 583 | timeout-minutes: 25 |
585 | 584 | runs-on: ubuntu-24.04 |
586 | 585 | strategy: |
@@ -627,7 +626,7 @@ jobs: |
627 | 626 | job_browser_playwright_tests: |
628 | 627 | name: Playwright (${{ matrix.bundle }}${{ matrix.shard && format(' {0}/{1}', matrix.shard, matrix.shards) || ''}}) Tests |
629 | 628 | needs: [job_get_metadata, job_build] |
630 | | - if: needs.job_get_metadata.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request' |
| 629 | + if: false |
631 | 630 | runs-on: ubuntu-24.04-large-js |
632 | 631 | timeout-minutes: 25 |
633 | 632 | strategy: |
@@ -717,7 +716,7 @@ jobs: |
717 | 716 | job_browser_loader_tests: |
718 | 717 | name: Playwright Loader (${{ matrix.bundle }}) Tests |
719 | 718 | needs: [job_get_metadata, job_build] |
720 | | - if: needs.job_get_metadata.outputs.changed_browser_integration == 'true' || github.event_name != 'pull_request' |
| 719 | + if: false |
721 | 720 | runs-on: ubuntu-24.04 |
722 | 721 | timeout-minutes: 15 |
723 | 722 | strategy: |
@@ -771,7 +770,7 @@ jobs: |
771 | 770 | job_browser_integration_tests: |
772 | 771 | name: Browser (${{ matrix.browser }}) Tests |
773 | 772 | needs: [job_get_metadata, job_build] |
774 | | - if: needs.job_get_metadata.outputs.changed_browser == 'true' || github.event_name != 'pull_request' |
| 773 | + if: false |
775 | 774 | runs-on: ubuntu-24.04-large-js |
776 | 775 | timeout-minutes: 20 |
777 | 776 | strategy: |
@@ -900,7 +899,7 @@ jobs: |
900 | 899 | job_remix_integration_tests: |
901 | 900 | name: Remix v${{ matrix.remix }} (Node ${{ matrix.node }}) ${{ matrix.tracingIntegration && 'TracingIntegration'}} Tests |
902 | 901 | needs: [job_get_metadata, job_build] |
903 | | - if: needs.job_get_metadata.outputs.changed_remix == 'true' || github.event_name != 'pull_request' |
| 902 | + if: false |
904 | 903 | runs-on: ubuntu-24.04 |
905 | 904 | timeout-minutes: 10 |
906 | 905 | strategy: |
@@ -944,10 +943,7 @@ jobs: |
944 | 943 | # - The build job was successful, not skipped |
945 | 944 | # - AND if the profiling node bindings were either successful or skipped |
946 | 945 | # AND if this is not a PR from a fork or dependabot |
947 | | - if: | |
948 | | - always() && needs.job_build.result == 'success' && |
949 | | - (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && |
950 | | - github.actor != 'dependabot[bot]' |
| 946 | + if: false |
951 | 947 | needs: [job_get_metadata, job_build] |
952 | 948 | runs-on: ubuntu-24.04-large-js |
953 | 949 | timeout-minutes: 15 |
@@ -985,10 +981,7 @@ jobs: |
985 | 981 | # Dependabot PRs sadly also don't have access to secrets, so we skip them as well |
986 | 982 | # We need to add the `always()` check here because the previous step has this as well :( |
987 | 983 | # See: https://github.com/actions/runner/issues/2205 |
988 | | - if: |
989 | | - always() && needs.job_e2e_prepare.result == 'success' && |
990 | | - (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && |
991 | | - github.actor != 'dependabot[bot]' |
| 984 | + if: false |
992 | 985 | needs: [job_get_metadata, job_build, job_e2e_prepare] |
993 | 986 | runs-on: ubuntu-24.04 |
994 | 987 | timeout-minutes: 10 |
|
0 commit comments