Skip to content

Commit 9a39e54

Browse files
committed
fix(ci): temporarily disable install deps from cache
1 parent 6de7474 commit 9a39e54

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

.github/workflows/ci.yaml

+12-8
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,18 @@ jobs:
3333
- name: Install helm
3434
uses: azure/[email protected]
3535

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-
4448

4549
- name: Install dependencies
4650
# if: steps.cache-yarn.outputs.cache-hit != 'true'

src/node/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ export const shouldRunVsCodeCli = (args: Args): boolean => {
672672
/**
673673
* Reads the socketPath based on path passed in.
674674
*
675-
* The one usually pased in is the DEFAULT_SOCKET_PATH.
675+
* The one usually passed in is the DEFAULT_SOCKET_PATH.
676676
*
677677
* If it can't read the path, it throws an error and returns undefined.
678678
*/

0 commit comments

Comments
 (0)