|
|
|
|
|
by paulbjensen
26 days ago
|
|
I’m talking about CI pipelines where you have: - Unit tests
- End to End testing with Cucumber and Puppeteer (or Playwright these days)
- Code Coverage analysis
- Lint and formatting checks
- Tools like knit to remove unused code
- Security checking tools like Synk and Socket
- Size checking If you look at what those tools do, they automate aspects of reviewing PRs. The question then becomes - what still gets done manually, and are there ways to automate that. |
|