This repository also uses the action so you can get a taste of how it works to help with your decision on installing the Action or not. Feel free to create random tickets. If anything needs my attention, please @ tag me and I will take a look else I shall ignore your experiments : ) Test sample code: --- View raw code ``` const express = require('express') const app = express() const port = 3000 app.get('/', (req, res) => { res.send('Hello World!') }) app.listen(port, () => { console.log(`Example app listening at http://localhost:${port}`) }) ``` --- > Reference http://expressjs.com/en/starter/hello-world.html