File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 62
62
name : atlas-test-results
63
63
path : coverage/lcov.info
64
64
65
+ dep-check :
66
+ name : Check dependencies
67
+ if : github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.repository
68
+ runs-on : ubuntu-latest
69
+ steps :
70
+ - uses : GitHubSecurityLab/actions-permissions/monitor@v1
71
+ - uses : actions/checkout@v4
72
+ - uses : actions/setup-node@v4
73
+ with :
74
+ node-version-file : package.json
75
+ cache : " npm"
76
+ - name : Install dependencies & build
77
+ run : npm ci
78
+ - name : Remove dev dependencies
79
+ run : |
80
+ rm -rf node_modules
81
+ npm pkg set scripts.prepare="exit 0"
82
+ npm install --omit=dev
83
+ - run : npx -y @modelcontextprotocol/inspector --cli --method tools/list -- node dist/index.js --connectionString "mongodb://localhost"
84
+
65
85
coverage :
66
86
name : Report Coverage
67
87
if : always() && github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.head.repo.full_name == github.repository
You can’t perform that action at this time.
0 commit comments