Depcheck Checker
ActionsRun depcheck in a Github Workflow.
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.
Depcheck Checker is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.