Skip to content

Commit 4ad39a9

Browse files
committed
build: Add github action for circularDepCheck
1 parent 607a1fd commit 4ad39a9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,29 @@ jobs:
139139
- name: Run linter
140140
run: yarn lint
141141

142+
# job_circular_dep_check:
143+
# name: Circular Dependency Check
144+
# needs: job_build
145+
# timeout-minutes: 10
146+
# runs-on: ubuntu-latest
147+
# steps:
148+
# - name: Check out current commit (${{ github.sha }})
149+
# uses: actions/checkout@v2
150+
# - name: Set up Node
151+
# uses: actions/setup-node@v1
152+
# - name: Check dependency cache
153+
# uses: actions/cache@v2
154+
# with:
155+
# path: ${{ env.CACHED_DEPENDENCY_PATHS }}
156+
# key: ${{ needs.job_build.outputs.dependency_cache_key }}
157+
# - name: Check build cache
158+
# uses: actions/cache@v2
159+
# with:
160+
# path: ${{ env.CACHED_BUILD_PATHS }}
161+
# key: ${{ env.BUILD_CACHE_KEY }}
162+
# - name: Run madge
163+
# run: yarn circularDepCheck
164+
142165
job_unit_test:
143166
name: Test (Node ${{ matrix.node }})
144167
needs: job_build

0 commit comments

Comments
 (0)