File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,29 @@ jobs:
139
139
- name : Run linter
140
140
run : yarn lint
141
141
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
+
142
165
job_unit_test :
143
166
name : Test (Node ${{ matrix.node }})
144
167
needs : job_build
You can’t perform that action at this time.
0 commit comments