generated from serenity-js/serenity-js-playwright-ct-react-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitpod.yml
54 lines (47 loc) · 1.1 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
54
image:
file: .gitpod/.gitpod.Dockerfile
ports:
- port: 8080
onOpen: notify
visibility: public
- port: 8181
onOpen: notify
visibility: public
tasks:
- name: 'Install Node modules'
init: |
nvm install
nvm use
npm ci
npx --yes playwright install --with-deps
npm test
gp sync-done installation
- name: 'Serenity Reports'
init: gp sync-await installation
command: |
npx http-server -p 8080 target/site/serenity/
- name: 'Playwright Report'
init: gp sync-await installation
command: |
npx http-server -p 8181 playwright-report
- name: 'Welcome'
init: gp sync-await installation
command: |
echo "To view Serenity Reports, visit:"
gp url 8080
echo "To view Playwright Report, visit:"
gp url 8181
vscode:
extensions:
- dbaeumer.vscode-eslint
- EditorConfig.EditorConfig
- ms-playwright.playwright
github:
prebuilds:
master: true
branches: false
pullRequests: true
pullRequestsFromForks: false
addCheck: true
addComment: false
addBadge: true