forked from serenity-js/serenity-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitpod.yml
50 lines (43 loc) · 1.07 KB
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
image:
file: .gitpod/.gitpod.Dockerfile
ports:
- port: 3000
onOpen: notify
visibility: public
tasks:
- name: 'Install Node modules and compile Serenity/JS'
init: |
nvm install
nvm use
make install compile
- name: 'Install VSCode Extensions'
command: |
echo "Wait for VSCode to boot up..."
sleep 10
echo "Installing Cucumber extension..."
code --install-extension /vscode-extensions/cucumber-official.vsix
- name: 'Serenity/JS website'
command: >
cd documentation/serenity-js.org &&
npm start
- name: 'Welcome'
command: |
echo "To view the website, go to:"
gp url 3000
vscode:
extensions:
- CucumberOpen.cucumber-official
- dbaeumer.vscode-eslint
- eamodio.gitlens
- EditorConfig.EditorConfig
- Gruntfuggly.todo-tree
- streetsidesoftware.code-spell-checker
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: prevent-merge-on-error
addComment: false
addBadge: true