File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2323 - uses : actions/checkout@v4
2424 with :
2525 ref : ${{ github.event.pull_request.head.sha }}
26+ fetch-depth : 0
2627
2728 - name : Setup node:${{ matrix.node-version }}
2829 uses : actions/setup-node@v2
8687 fail-fast : false
8788 matrix :
8889 check : ['lint', 'format', 'commit-lint', 'dependencies']
89-
90+
9091 steps :
9192 - uses : actions/checkout@v4
9293 with :
Original file line number Diff line number Diff line change 9393 "audit-dev" : " yarn audit --group devDependencies ; test $? -lt 8" ,
9494 "lint" : " lerna run lint --stream" ,
9595 "lint-changed" : " lerna run lint --since origin/${GITHUB_REPO_BRANCH:-master}..HEAD --stream" ,
96- "unit-test-changed" : " lerna run unit-test --since origin/${GITHUB_REPO_BRANCH:-master}..HEAD --stream" ,
96+ "unit-test-changed" : " lerna run unit-test --since $(git merge-base HEAD~ origin/${GITHUB_REPO_BRANCH:-master}) --stream" ,
9797 "browser-tests" : " lerna run --scope bitgo compile && lerna run --scope bitgo browser-test && lerna run --scope @bitgo/web-demo test" ,
9898 "gen-coverage-changed" : " lerna run gen-coverage --since origin/${GITHUB_REPO_BRANCH:-master}..HEAD --stream --parallel" ,
9999 "coverage-changed" : " lerna run upload-coverage --since origin/${GITHUB_REPO_BRANCH:-master}..HEAD --stream --parallel --" ,
You can’t perform that action at this time.
0 commit comments