Skip to content

Commit 367ccc0

Browse files
committed
fix(ci): temporarily disable install deps from cache
1 parent eb77c7d commit 367ccc0

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
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/setup-helm@v1.1
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'

0 commit comments

Comments
 (0)