File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 66 - main
77 paths :
88 - " install.sh"
9+ - " .github/workflows/installer.yaml"
910 pull_request :
1011 branches :
1112 - main
1213 paths :
1314 - " install.sh"
15+ - " .github/workflows/installer.yaml"
1416
1517# Cancel in-progress runs for pull requests when developers push
1618# additional changes, and serialize builds in branches.
3335 - name : Install code-server
3436 run : ./install.sh
3537
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
3840
3941 alpine :
4042 name : Test installer on Alpine
5456 - name : Test standalone to a non-existent prefix
5557 run : su coder -c "./install.sh --method standalone --prefix /tmp/does/not/yet/exist"
5658
59+ # We do not actually have Alpine standalone builds so running code-server
60+ # will not work.
61+ - name : Test code-server was installed to prefix
62+ run : test -f /tmp/does/not/yet/exist/bin/code-server
63+
5764 macos :
5865 name : Test installer on macOS
5966 runs-on : macos-latest
6572 - name : Install code-server
6673 run : ./install.sh
6774
68- - name : Test code-server
69- run : CODE_SERVER_PATH=" code-server" yarn test:integration
75+ - name : Test code-server was installed globally
76+ run : code-server --help
You can’t perform that action at this time.
0 commit comments