Universal Lock File Scanner for Git.
Today, most languages have a package manager, and some language have two. Dependency management is very important and difficult in software development.
In cases of code review, we check entire of the changed codes. However, we often ignore lock files in the review, which controls dependencies of the project or the library.
On GitHub Pull Request, most lock files are hidden by default.
Actually, they are very long and not human-readable.
I tried to notify the diff of the lock files to the author of PR and/or the reviewer(s). Using this action, the added, upgraded, downgraded, and removed packages are reported to the PR, in user-friendly format.
So we can check what packages will be changed by the PR, in the review.
$ composer require --dev siketyan/loxcan
Then you can use this tool in CLI.
(In some IDEs, you can access to the executable as just loxcan
!)
$ ./vendor/bin/loxcan [base] [head]
Use pull_request
events to trigger the action.
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: siketyan/loxcan@main
(β = Supported, β¬οΈ = Scheduled)
- Composer (PHP)
- Cargo (Rust)
- Pub (Dart)
- npm (JavaScript, Node.js)
- pnpm (JavaScript, Node.js)
- Yarn (JavaScript, Node.js)
(β = Supported, β¬οΈ = Scheduled)
- GitHub
- GitLab