@@ -415,8 +415,6 @@ jobs:
415
415
if : needs.job_build.outputs.changed_bun == 'true' || github.event_name != 'pull_request'
416
416
timeout-minutes : 10
417
417
runs-on : ubuntu-24.04
418
- strategy :
419
- fail-fast : false
420
418
steps :
421
419
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
422
420
uses : actions/checkout@v4
@@ -442,8 +440,6 @@ jobs:
442
440
if : needs.job_build.outputs.changed_deno == 'true' || github.event_name != 'pull_request'
443
441
timeout-minutes : 10
444
442
runs-on : ubuntu-24.04
445
- strategy :
446
- fail-fast : false
447
443
steps :
448
444
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
449
445
uses : actions/checkout@v4
@@ -475,7 +471,7 @@ jobs:
475
471
strategy :
476
472
fail-fast : false
477
473
matrix :
478
- node : [18, 20, 22, '^24.0.1' ]
474
+ node : [18, 20, 22, 24 ]
479
475
steps :
480
476
- name : Check out base commit (${{ github.event.pull_request.base.sha }})
481
477
uses : actions/checkout@v4
@@ -885,18 +881,11 @@ jobs:
885
881
ref : ${{ env.HEAD_COMMIT }}
886
882
- uses : pnpm/action-setup@v4
887
883
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
895
885
- name : Set up Node
896
- if : matrix.test-application != 'angular-20'
897
886
uses : actions/setup-node@v4
898
887
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'
900
889
- name : Set up Bun
901
890
if : matrix.test-application == 'node-exports-test-app'
902
891
uses : oven-sh/setup-bun@v2
@@ -1012,11 +1001,11 @@ jobs:
1012
1001
ref : ${{ env.HEAD_COMMIT }}
1013
1002
- uses : pnpm/action-setup@v4
1014
1003
with :
1015
- version : 9.4.0
1004
+ version : 9.15.9
1016
1005
- name : Set up Node
1017
1006
uses : actions/setup-node@v4
1018
1007
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'
1020
1009
- name : Restore caches
1021
1010
uses : ./.github/actions/restore-cache
1022
1011
with :
0 commit comments