Stepper motors not responding with three drivers on CNC shield

You should enable the enable pin.

const int CncShieldEnablePin = 8; // active low
...
pinMode(CncShieldEnablePin,OUTPUT);
digitalWrite(CncShieldEnablePin,LOW);