File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 6
6
- main
7
7
paths :
8
8
- " install.sh"
9
+ - " .github/workflows/installer.yaml"
9
10
pull_request :
10
11
branches :
11
12
- main
12
13
paths :
13
14
- " install.sh"
15
+ - " .github/workflows/installer.yaml"
14
16
15
17
# Cancel in-progress runs for pull requests when developers push
16
18
# additional changes, and serialize builds in branches.
33
35
- name : Install code-server
34
36
run : ./install.sh
35
37
36
- - name : Test code-server
37
- run : CODE_SERVER_PATH=" code-server" yarn test:integration
38
+ - name : Test code-server was installed globally
39
+ run : code-server --help
38
40
39
41
alpine :
40
42
name : Test installer on Alpine
54
56
- name : Test standalone to a non-existent prefix
55
57
run : su coder -c "./install.sh --method standalone --prefix /tmp/does/not/yet/exist"
56
58
59
+ - name : Test code-server was installed to prefix
60
+ run : /tmp/does/not/yet/exist/bin/code-server --help
61
+
57
62
macos :
58
63
name : Test installer on macOS
59
64
runs-on : macos-latest
65
70
- name : Install code-server
66
71
run : ./install.sh
67
72
68
- - name : Test code-server
69
- run : CODE_SERVER_PATH=" code-server" yarn test:integration
73
+ - name : Test code-server was installed globally
74
+ run : code-server --help
You can’t perform that action at this time.
0 commit comments