Skip to content

Commit d8e083f

Browse files
Merge pull request #5489 from BitGo/BTC-1821.parallel-checkdeps
refactor(root): Move package dependencies check to code-quality matrix job
2 parents 9393669 + 1783db4 commit d8e083f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ jobs:
6767
DISABLE_V8_COMPILE_CACHE: '1'
6868
run: yarn run postinstall
6969

70-
- name: Check Package Dependencies
71-
run: yarn run check-deps
72-
7370
- name: Unit Test
7471
run: yarn run unit-test-changed
7572
env:
@@ -88,7 +85,7 @@ jobs:
8885
strategy:
8986
fail-fast: false
9087
matrix:
91-
check: ['lint', 'format', 'commit-lint']
88+
check: ['lint', 'format', 'commit-lint', 'dependencies']
9289

9390
steps:
9491
- uses: actions/checkout@v4
@@ -127,6 +124,10 @@ jobs:
127124
git fetch --unshallow origin $GITHUB_BASE_REF
128125
GITHUB_REPO_BRANCH=$GITHUB_BASE_REF yarn run check-commits
129126
127+
- name: Check Package Dependencies
128+
if: matrix.check == 'dependencies'
129+
run: yarn run check-deps
130+
130131
browser-test:
131132
runs-on: ubuntu-22.04
132133

0 commit comments

Comments
 (0)