Skip to content

Commit 0c05508

Browse files
committed
fix it...
1 parent 71fcf6b commit 0c05508

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ jobs:
434434
timeout-minutes: 10
435435
runs-on: ubuntu-20.04
436436
steps:
437-
- name: Check out head commit (${{ github.event.pull_request.base.sha }})
437+
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
438438
uses: actions/checkout@v4
439439
with:
440440
ref: ${{ github.event.pull_request.base.sha }}
@@ -453,7 +453,7 @@ jobs:
453453
DEPENDENCY_CACHE_KEY: ${{ needs.job_build.outputs.dependency_cache_key }}
454454

455455
- name: Run affected tests
456-
run: yarn test:pr:browser --base=${{ github.event.pull_request.head.sha }}
456+
run: yarn test:pr:browser --base=${{ github.event.pull_request.base.sha }}
457457
if: github.event_name == 'pull_request'
458458

459459
- name: Run all tests
@@ -533,7 +533,7 @@ jobs:
533533
matrix:
534534
node: [14, 16, 18, 20, 22]
535535
steps:
536-
- name: Check out head commit (${{ github.event.pull_request.base.sha }})
536+
- name: Check out base commit (${{ github.event.pull_request.base.sha }})
537537
uses: actions/checkout@v4
538538
with:
539539
ref: ${{ github.event.pull_request.base.sha }}

0 commit comments

Comments
 (0)