We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52cd8d4 commit effa56dCopy full SHA for effa56d
.github/workflows/ci.yml
@@ -7,6 +7,25 @@ on:
7
branches:
8
- '**'
9
jobs:
10
+ check-circular:
11
+ name: Circular Dependencies
12
+ timeout-minutes: 5
13
+ runs-on: ubuntu-18.04
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Use Node.js
17
+ uses: actions/setup-node@v1
18
+ with:
19
+ node-version: '10.14'
20
+ - name: Cache Node.js modules
21
+ uses: actions/cache@v2
22
23
+ path: ~/.npm
24
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
25
+ restore-keys: |
26
+ ${{ runner.os }}-node-
27
+ - run: npm ci
28
+ - run: npm run madge:circular
29
build:
30
runs-on: ubuntu-18.04
31
timeout-minutes: 30
0 commit comments