From c319dffeed8df48492383f40dba61ca0000d9a33 Mon Sep 17 00:00:00 2001 From: Rohit Chaudhari Date: Sat, 18 Nov 2023 15:49:42 +0000 Subject: [PATCH 1/4] Add gitpod setup --- .gitpod.yml | 11 +++++++++++ README.md | 5 +++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..cbff5769 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: npm install + - command: npm test + + diff --git a/README.md b/README.md index 930e83b4..5412c60a 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,9 @@ TypeScript Repository of TheAlgorithms, which implements various algorithms and [![Contributions Welcome][welcome]](CONTRIBUTING.md) [![Discord chat][chat]][discord-server] - - + + Gitpod Ready-to-Code + --- From 6fd2eab42cc7d0f0e1f9bf7308ced8f870d1d04b Mon Sep 17 00:00:00 2001 From: Rohit Chaudhari Date: Sat, 18 Nov 2023 15:53:39 +0000 Subject: [PATCH 2/4] Update yml file --- .gitpod.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index cbff5769..4671a1fb 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -6,6 +6,5 @@ tasks: - init: npm install - - command: npm test From 8c256b42d85d54c93964fe01dd2c2d9303b91254 Mon Sep 17 00:00:00 2001 From: Rohit Chaudhari Date: Sat, 18 Nov 2023 16:00:39 +0000 Subject: [PATCH 3/4] modified: .gitpod.yml --- .gitpod.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 4671a1fb..4826ce08 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -5,6 +5,7 @@ # Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart tasks: - - init: npm install + - init: | + npm install && npm test From e9b1d1b542e3dcda68859b965753932365161adb Mon Sep 17 00:00:00 2001 From: Rohit Chaudhari Date: Sat, 18 Nov 2023 16:03:24 +0000 Subject: [PATCH 4/4] Modified : .gitpod.yml --- .gitpod.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 4826ce08..46209a0a 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,9 +1,3 @@ -# This configuration file was automatically generated by Gitpod. -# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) -# and commit this file to your remote git repository to share the goodness with others. - -# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart - tasks: - init: | npm install && npm test