10

Action for checking dependency usage in project

 4 years ago
source link: https://github.com/marketplace/actions/dependency-checker
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Dependency Checker Action

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

Example of failed check: nYvumeI.png!web

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

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK