forked from webdriverio/webdriverio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
53 lines (49 loc) · 1.11 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
51
52
53
image:
file: .gitpod/dev.dockerfile
tasks:
- name: Unit Test Coverage
init: gp sync-await installation
command: |
npm run test:unit
cd coverage/lcov-report/
http-server -p 8000 &
cd ../../
npx vitest
- name: Run Documentation Page
init: |
cd /workspace/webdriverio/website
npm install
command: |
cd /workspace/webdriverio/website
npm start
- name: Setup WebdriverIO Development Environment
init: |
npm install
npm run setup
gp sync-done installation
command: npm run watch
- name: Welcome Bash
init: gp sync-await installation
command: node .gitpod/welcome.mjs
ports:
- port: 3000
onOpen: notify
visibility: public
- port: 8000
onOpen: notify
visibility: public
github:
prebuilds:
master: true
branches: true
pullRequests: true
pullRequestsFromForks: true
addCheck: prevent-merge-on-error
addComment: false
addBadge: true
vscode:
extensions:
- EditorConfig.EditorConfig
- DigitalBrainstem.javascript-ejs-support
- dbaeumer.vscode-eslint
- eamodio.gitlens