@@ -434,10 +434,10 @@ jobs:
434
434
timeout-minutes : 10
435
435
runs-on : ubuntu-20.04
436
436
steps :
437
- - name : Check out head commit (${{ github.event.pull_request.head .sha }})
437
+ - name : Check out head commit (${{ github.event.pull_request.base .sha }})
438
438
uses : actions/checkout@v4
439
439
with :
440
- ref : ${{ github.event.pull_request.head .sha }}
440
+ ref : ${{ github.event.pull_request.base .sha }}
441
441
442
442
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
443
443
uses : actions/checkout@v4
@@ -533,10 +533,10 @@ jobs:
533
533
matrix :
534
534
node : [14, 16, 18, 20, 22]
535
535
steps :
536
- - name : Check out head commit (${{ github.event.pull_request.head .sha }})
536
+ - name : Check out head commit (${{ github.event.pull_request.base .sha }})
537
537
uses : actions/checkout@v4
538
538
with :
539
- ref : ${{ github.event.pull_request.head .sha }}
539
+ ref : ${{ github.event.pull_request.base .sha }}
540
540
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
541
541
uses : actions/checkout@v4
542
542
with :
@@ -551,7 +551,7 @@ jobs:
551
551
DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
552
552
553
553
- name : Run affected tests
554
- run : yarn test:pr:node --base=${{ github.event.pull_request.head .sha }}
554
+ run : yarn test:pr:node --base=${{ github.event.pull_request.base .sha }}
555
555
if : github.event_name == 'pull_request'
556
556
env :
557
557
NODE_VERSION : ${{ matrix.node }}
0 commit comments