What sorts of things do you look for in a code review when using continuous integration? It seems like a lot of the literature around for code reviews mentions things like coding style, spelling mistakes, resource usage, error handling, etc. (perhaps not in that order :-) However tools like FxCop and StyleCop seem to pick up a most of the trivial problems.
I would think that as many checks as possible should be pushed into CI to save time and ensure that those checks are done consistently. If you take this approach it seems like the main things to look for in a review are things like poor design, failing to use the existing code structure properly, subtle defects that may been missed in tests, etc
How does everyone else do reviews with CI in place? What other things do you look for in a review?