Hi, I want to both check a global coverage and a per file coverage so i need to call check-coverage separately. If i have a file uncovered named foo.js, calling `c8 --all --include build --check-coverage` works perfectly. It will fail telling me foo.js does not meet threshold. but calling `c8 --all --include build` and later call `c8 check-coverage --all --include build` does not works. It doesn't throw an error.