-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitpod.yml
44 lines (38 loc) · 956 Bytes
/
.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
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