Open mcollina opened 5 years ago
We would definitely use such a tool in Level too (we've had https://github.com/Level/abstract-leveldown/issues/184 open for a while, no time to implement it).
Maybe the engine of https://github.com/nodejs/citgm could be extended to allow testing git checkouts of modules.
cc @nodejs/citgm
This would be great, and I am sure we would want to integrate that into express.
Currently we have some important modules in the core CITGM, but as https://github.com/expressjs/express/issues/3813 shows, it wold be helpful to go further into our dependency tree. Further than the core CITGM is meant to do IMO.
I think leveraging CITGM so that maintainers can re-use it is a great idea.
So here's a proposal on how CITGM for package ecosystems can be implemented.
Basically, the idea is to leverage the existing CI setup, in a similar way that various dependency update management tools do. The implementation could be a bot, which:
citgm/*
, but this may have access control issues1)lookup.json
from nodejs/citgm
is reasonable manifest format, but it probably needs to be extended.package.json
to install the package from git
Am I missing something necessary/obvious?
I think the MVP/PoC for the above would be:
The rest can be build on top of it.
This does differ from the existing approaches in that it does not try to clone/install all of the dependents in a single big task, which does have its pros and cons.
This does not provide a way to run everything locally, but that does not mean it can't be achieved, just that I personally would find less value in my laptop fans spinning, when I can leverage the existing infra.
1 GH branch restrictions only apply to new commits, but not to branch creation, IIRC - which may not be an issue for people with commit access.
Great work and good idea!
@BethGriggs FYI as I know you've been thinking about this as well.
There's a PR over in CITGM at the moment to extend it to test module dependencies -https://github.com/nodejs/citgm/pull/765 I'm still torn between whether this should be an additional feature for CITGM or dedicated tool
Thanks! I will definitely take a look!
wiby
progress overview: https://github.com/pkgjs/wiby/projects/1
Developing a library at scale is hard, and as a maintainer the goal is to avoid unwanted breakage and regression. Especially when doing breaking changes, it's of critical importance to validate the impact of those changes, more or less how we do it in core.
In pino, we have done https://github.com/pinojs/pino-integration. In Fastify, we have done https://github.com/fastify/fastify-citgm. I think there is a space to build a generic and supported tool for testing dependant projects, so that we avoid breakages when doing releases.