How to run multiple commands in execute command node

I want to change the directory and run some js script, for that i need to run multiple commands in execute command node, can anyone tell me if that’s possible and how it can be achieved.

Sure, you can simply combine them with &&.

So for example:

cd bin && ls

Thanks Jan, this worked for me.

Great to hear! You are welcome! Have fun!