File tree 2 files changed +13
-9
lines changed
2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -33,14 +33,18 @@ jobs:
33
33
- name : Install helm
34
34
35
35
36
- - name : Fetch dependencies from cache
37
- id : cache-yarn
38
- uses : actions/cache@v2
39
- with :
40
- path : " **/node_modules"
41
- key : yarn-build-${{ hashFiles('**/yarn.lock') }}
42
- restore-keys : |
43
- yarn-build-
36
+ # NOTE@jsjoeio
37
+ # disabling this until we can audit the build process
38
+ # and the usefulness of this step
39
+ # See: https://github.com/cdr/code-server/issues/4287
40
+ # - name: Fetch dependencies from cache
41
+ # id: cache-yarn
42
+ # uses: actions/cache@v2
43
+ # with:
44
+ # path: "**/node_modules"
45
+ # key: yarn-build-${{ hashFiles('**/yarn.lock') }}
46
+ # restore-keys: |
47
+ # yarn-build-
44
48
45
49
- name : Install dependencies
46
50
# if: steps.cache-yarn.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -672,7 +672,7 @@ export const shouldRunVsCodeCli = (args: Args): boolean => {
672
672
/**
673
673
* Reads the socketPath based on path passed in.
674
674
*
675
- * The one usually pased in is the DEFAULT_SOCKET_PATH.
675
+ * The one usually passed in is the DEFAULT_SOCKET_PATH.
676
676
*
677
677
* If it can't read the path, it throws an error and returns undefined.
678
678
*/
You can’t perform that action at this time.
0 commit comments