@@ -415,8 +415,6 @@ jobs:
415415 if : needs.job_build.outputs.changed_bun == 'true' || github.event_name != 'pull_request'
416416 timeout-minutes : 10
417417 runs-on : ubuntu-24.04
418- strategy :
419- fail-fast : false
420418 steps :
421419 - name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
422420 uses : actions/checkout@v4
@@ -442,8 +440,6 @@ jobs:
442440 if : needs.job_build.outputs.changed_deno == 'true' || github.event_name != 'pull_request'
443441 timeout-minutes : 10
444442 runs-on : ubuntu-24.04
445- strategy :
446- fail-fast : false
447443 steps :
448444 - name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
449445 uses : actions/checkout@v4
@@ -475,7 +471,7 @@ jobs:
475471 strategy :
476472 fail-fast : false
477473 matrix :
478- node : [18, 20, 22, '^24.0.1' ]
474+ node : [18, 20, 22, 24 ]
479475 steps :
480476 - name : Check out base commit (${{ github.event.pull_request.base.sha }})
481477 uses : actions/checkout@v4
@@ -885,18 +881,11 @@ jobs:
885881 ref : ${{ env.HEAD_COMMIT }}
886882 - uses : pnpm/action-setup@v4
887883 with :
888- version : 9.4.0
889- # TODO: Remove this once the repo is bumped to 20.19.2 or higher
890- - name : Set up Node for Angular 20
891- if : matrix.test-application == 'angular-20'
892- uses : actions/setup-node@v4
893- with :
894- node-version : ' 20.19.2'
884+ version : 9.15.9
895885 - name : Set up Node
896- if : matrix.test-application != 'angular-20'
897886 uses : actions/setup-node@v4
898887 with :
899- node-version-file : ' dev-packages/e2e-tests/package.json'
888+ node-version-file : ' dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/ package.json'
900889 - name : Set up Bun
901890 if : matrix.test-application == 'node-exports-test-app'
902891 uses : oven-sh/setup-bun@v2
@@ -1012,11 +1001,11 @@ jobs:
10121001 ref : ${{ env.HEAD_COMMIT }}
10131002 - uses : pnpm/action-setup@v4
10141003 with :
1015- version : 9.4.0
1004+ version : 9.15.9
10161005 - name : Set up Node
10171006 uses : actions/setup-node@v4
10181007 with :
1019- node-version-file : ' dev-packages/e2e-tests/package.json'
1008+ node-version-file : ' dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/ package.json'
10201009 - name : Restore caches
10211010 uses : ./.github/actions/restore-cache
10221011 with :
0 commit comments