Currently upon editing a node has workflow current state displayed on the node edit page. This information will not be available on node_load or entity load. Since the current workflow or content moderation state information will be on latest revision of that content. All just you need to do is to load the latest revision of the content.
Follow the below steps to find and load the latest revision id and load the same to identify current workflow state in Drupal 8. Lets consider a "Node" which has workflow configured.
Loading a Node using node_load:
Using node_revision_load function:
$status = node_revision_load($latest_revision_id)->get('moderation_state')->getValue(); // node_revision_load is the function. 'moderation_state' is the field containing the current workflow state.
Code: