forked from che-incubator/chectl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devfile.yaml
49 lines (37 loc) · 820 Bytes
/
devfile.yaml
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
apiVersion: 1.0.0
metadata:
name: chectl
projects:
- name: chectl
source:
type: git
location: 'https://github.com/che-incubator/chectl.git'
components:
- alias: git
type: dockerimage
image: sunix/git-devtools
mountSources: true
memoryLimit: 256M
- alias: dev
type: dockerimage
image: eclipse/che-theia-dev:next
mountSources: true
memoryLimit: 1G
- id: redhat/vscode-yaml/latest
type: chePlugin
- id: che-incubator/typescript/latest
type: chePlugin
memoryLimit: 1G
commands:
- name: yarn
actions:
- type: exec
component: dev
command: yarn
workdir: /projects/chectl
- name: yarn test
actions:
- type: exec
component: dev
command: yarn test
workdir: /projects/chectl