build(deps-dev): bump the dev-types group with 2 updates #510
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs `npx depcheck` | |
# | |
# Depcheck is a tool for analyzing the dependencies in a project to see: how | |
# each dependency is used, which dependencies are useless, and which | |
# dependencies are missing from package.json. | |
# | |
# https://www.npmjs.com/package/depcheck | |
name: depcheck | |
on: | |
# allow manual trigger workflow | |
push: | |
paths: | |
# run only when one of the files matching the glob patterns changed | |
- 'package.json' | |
- 'package-lock.json' | |
jobs: | |
depcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
- run: npx depcheck |