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 f92e78f commit 22ac00dCopy full SHA for 22ac00d
.github/workflows/ci.yml
@@ -17,6 +17,25 @@ jobs:
17
uses: mansona/npm-lockfile-version@v1
18
with:
19
version: 1
20
+ check-circular:
21
+ name: Circular Dependencies
22
+ timeout-minutes: 5
23
+ runs-on: ubuntu-18.04
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - name: Use Node.js
27
+ uses: actions/setup-node@v1
28
+ with:
29
+ node-version: '10.14'
30
+ - name: Cache Node.js modules
31
+ uses: actions/cache@v2
32
33
+ path: ~/.npm
34
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
35
+ restore-keys: |
36
+ ${{ runner.os }}-node-
37
+ - run: npm ci
38
+ - run: npm run madge:circular
39
build:
40
runs-on: ubuntu-18.04
41
timeout-minutes: 30
0 commit comments