CI

You might say

For every PR or merge, automatically run lint, build, and key tests, with results shown on the pull request.

CI is the practice of automatically building and testing changes as they enter shared code, so integration problems appear early.A PR can automatically run lint, unit tests, and build, then write pass or fail back to the PR. This exposes issues before or just after merging. Manually testing once before release is not continuous integration.
CIContinuous Integration
Further reading