chore: Update node and Go environment images in CI (#2240)

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
This commit is contained in:
Sanket Sudake
2021-10-27 15:30:31 +05:30
committed by GitHub
parent 2f4ec4b2b9
commit 02e16666ed
6 changed files with 9 additions and 9 deletions
@@ -1,4 +1,4 @@
module.exports = async function (context) {
module.exports = async (context) => {
return {
status: 200,
body: "hello, world!\n",
@@ -1,6 +1,6 @@
var url = require("url");
module.exports = async function (context) {
module.exports = async (context) => {
console.log(context.request.url);
var url_parts = url.parse(context.request.url, true);
@@ -1,4 +1,4 @@
module.exports = async function (context) {
module.exports = async (context) => {
var splitStringArray = context.request.split(" ");
return {
@@ -1,6 +1,6 @@
const momentpackage = require("moment");
module.exports = async function (context) {
module.exports = async (context) => {
return {
status: 200,
body: "Hello " + momentpackage().format(),