Skip to content

Commit

Permalink
Add CI check for circular deps
Browse files Browse the repository at this point in the history
  • Loading branch information
samayer12 committed Oct 3, 2024
1 parent cf70c19 commit c059034
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/circular-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Circular Dependencies
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: setup node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 20
cache-dependency-path: pepr
- name: Checkout Repository
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Circular Dependency Check
run: npx madge --help

0 comments on commit c059034

Please sign in to comment.