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 @@ -31,14 +31,18 @@ jobs:
31
31
- name : Install helm
32
32
33
33
34
- - name : Fetch dependencies from cache
35
- id : cache-yarn
36
- uses : actions/cache@v2
37
- with :
38
- path : " **/node_modules"
39
- key : yarn-build-${{ hashFiles('**/yarn.lock') }}
40
- restore-keys : |
41
- yarn-build-
34
+ # NOTE@jsjoeio
35
+ # disabling this until we can audit the build process
36
+ # and the usefulness of this step
37
+ # See: https://github.com/cdr/code-server/issues/4287
38
+ # - name: Fetch dependencies from cache
39
+ # id: cache-yarn
40
+ # uses: actions/cache@v2
41
+ # with:
42
+ # path: "**/node_modules"
43
+ # key: yarn-build-${{ hashFiles('**/yarn.lock') }}
44
+ # restore-keys: |
45
+ # yarn-build-
42
46
43
47
- name : Install dependencies
44
48
# if: steps.cache-yarn.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ function bindAddrFromAllSources(...argsConfig: Args[]): Addr {
662
662
/**
663
663
* Reads the socketPath based on path passed in.
664
664
*
665
- * The one usually pased in is the DEFAULT_SOCKET_PATH.
665
+ * The one usually passed in is the DEFAULT_SOCKET_PATH.
666
666
*
667
667
* If it can't read the path, it throws an error and returns undefined.
668
668
*/
You can’t perform that action at this time.
0 commit comments