Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 552 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 552 Bytes

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.