Skip to content

Marcisbee/dependency-check-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dependency Checker Action

This action checks if JavaScript dependencies are used but missing from package.json file.

Example of failed check: image

Inputs

PATH

Relative path to project. Default value: ".".

IGNORE_PACKAGES

List of packages to ignore from being reported as missing. Default value: [].

IGNORE_FILES

List of files to ignore from being checked. Default value: [].

Example usage

Example usage of dependency checker that will check /projects/server used code and compare to /projects/server/package.json listed dependencies:

This example case will ignore @babel/core dependency and will ignore files that end with .test.js and customfile.js.

name: Check
runs-on: ubuntu-latest
steps:
  - uses: Marcisbee/dependency-check-action
    with:
      PATH: "/projects/server"
      IGNORE_PACKAGES:
        - @babel/core
      IGNORE_FILES:
        - .test.js
        - /customfile.js