Skip to content

Commit d30ea60

Browse files
authored
Add NodeJS 16 installation(commented out by default)
Add NodeJS 16 installation(commented out)
2 parents b7bb760 + 318456a commit d30ea60

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

.gitpod.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,34 @@ image:
44
# tasks for gitpod
55

66
tasks:
7+
# NodeJS work(commented out, use at your own risk)
8+
# - init: |
9+
# sudo apt-get install curl software-properties-common
10+
# curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -
11+
# sudo apt-get install nodejs
12+
# echo "NodeJS 16 installed, check the version"
13+
# command: node --version && npm --version
14+
15+
# Codedoc stuff
716
- init: |
817
codedoc install
918
echo "Dependencies installed, serving..."
1019
command: codedoc serve
1120
21+
# GitHub
1222
github:
1323
prebuilds:
1424
# enable for the master/default branch (defaults to true)
1525
master: true
1626
# enable for all branches in this repo (defaults to false)
17-
branches: false
27+
branches: true
1828
# enable for pull requests coming from this repo (defaults to true)
1929
pullRequests: true
20-
# add a check to pull requests (defaults to true)
21-
addCheck: true
22-
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
30+
# enable for pull requests coming from forks (defaults to false)
31+
pullRequestsFromForks: true
32+
# add a "Review in Gitpod" button as a comment to pull requests (defaults to true)
2333
addComment: true
34+
# add a "Review in Gitpod" button to pull requests (defaults to false)
35+
addBadge: true
36+
# add a label once the prebuild is ready to pull requests (defaults to false)
37+
addLabel: prebuilt-in-gitpod

0 commit comments

Comments
 (0)