Skip to content

theahura/depcheck-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

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

depcheck-action

Run depcheck in a Github Workflow.

Usage

To use, create a workflow file (e.g. .github/workflows/depcheck.yml) with the following:

name: depcheck
on: [push]
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: depcheck
      uses: theahura/depcheck-action@main
      with:
        args: --skip-missing true

You can add other depcheck args in the args section of the github workflow.