@@ -489,22 +489,16 @@ jobs:
489
489
contents : read
490
490
steps :
491
491
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
492
- - name : Run e2e deployment tests with retry
493
- uses : nick-fields/retry@v3
494
- with :
495
- timeout_minutes : ${{ matrix.os == 'windows-2025' && 35 || 25 }}
496
- max_attempts : 3
497
- retry_wait_seconds : 30
498
- shell : bash
499
- command : |
500
- # Setup node and restore cache
501
- echo "Setting up Node.js and restoring cache..."
492
+ - name : Run e2e deployment tests
493
+ run : |
494
+ # Setup node and restore cache
495
+ echo "Setting up Node.js and restoring cache..."
502
496
503
- # Run the e2e deployment tests using the action
504
- echo "Running e2e deployment tests..."
497
+ # Run the e2e deployment tests using the action
498
+ echo "Running e2e deployment tests..."
505
499
506
- # This will be handled by the composite action call below
507
- exit 0
500
+ # This will be handled by the composite action call below
501
+ exit 0
508
502
- name : Execute e2e deployment tests
509
503
uses : ./.github/actions/run_with_e2e_account
510
504
with :
@@ -559,16 +553,10 @@ jobs:
559
553
steps :
560
554
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
561
555
- name : Run e2e sandbox tests with retry
562
- uses : nick-fields/retry@v3
563
- with :
564
- timeout_minutes : ${{ matrix.os == 'windows-2025' && 35 || 25 }}
565
- max_attempts : 3
566
- retry_wait_seconds : 30
567
- shell : bash
568
- command : |
569
- # This step will be handled by the composite action below
570
- echo "Preparing to run e2e sandbox tests with retry..."
571
- exit 0
556
+ run : |
557
+ # This step will be handled by the composite action below
558
+ echo "Preparing to run e2e sandbox tests with retry..."
559
+ exit 0
572
560
- name : Execute e2e sandbox tests
573
561
uses : ./.github/actions/run_with_e2e_account
574
562
with :
@@ -606,7 +594,12 @@ jobs:
606
594
cdk-lib-version : ${{ needs.resolve_inputs.outputs.cdk_lib_version }}
607
595
- run : cd packages/cli && npm link
608
596
- name : Run e2e notices tests
609
- run : npm run test:dir packages/integration-tests/lib/test-e2e/notices.test.js
597
+ uses : nick-fields/retry@v3
598
+ with :
599
+ timeout_minutes : ${{ matrix.os == 'windows-2025' && 8 || 5 }}
600
+ max_attempts : 3
601
+ retry_wait_seconds : 30
602
+ command : npm run test:dir packages/integration-tests/lib/test-e2e/notices.test.js
610
603
e2e_backend_output :
611
604
if : needs.do_include_e2e.outputs.run_e2e == 'true'
612
605
runs-on : ubuntu-latest
@@ -690,16 +683,10 @@ jobs:
690
683
- name : Checkout aws-amplify/amplify-backend repo
691
684
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
692
685
- name : Run e2e package manager tests with retry
693
- uses : nick-fields/retry@v3
694
- with :
695
- timeout_minutes : ${{ matrix.os == 'windows-2025' && 40 || 25 }}
696
- max_attempts : 3
697
- retry_wait_seconds : 30
698
- shell : bash
699
- command : |
700
- # This step will be handled by the composite action below
701
- echo "Preparing to run e2e package manager tests with retry..."
702
- exit 0
686
+ run : |
687
+ # This step will be handled by the composite action below
688
+ echo "Preparing to run e2e package manager tests with retry..."
689
+ exit 0
703
690
- name : Execute e2e package manager tests
704
691
uses : ./.github/actions/run_with_e2e_account
705
692
with :
0 commit comments