This command will return the action that is currently running on the specified pool. If no action is running, None will be returned.
#Add an action to the node
fade = vizact.fadeTo(0,time=2)
node.addAction(fade)
.
.
.
#Check if the action is running
if node.getAction() == fade:
print('Fade action is running')