This is an experience shared on getting a simple node application deployed into EC2 with github actions.
- Go the project directory and type the following commands
mkdir node-hello && cd node-hello
- Type
npm init
in your terminal to initiate a node project (Make sure you have node installed if not follow the guide here) - Create the index.js file (
touch index.js
)