We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb77c7d commit 367ccc0Copy full SHA for 367ccc0
.github/workflows/ci.yaml
@@ -33,14 +33,18 @@ jobs:
33
- name: Install helm
34
uses: azure/[email protected]
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-
+ # NOTE@jsjoeio
+ # disabling this until we can audit the build process
+ # and the usefulness of this step
+ # See: https://github.com/cdr/code-server/issues/4287
+ # - name: Fetch dependencies from cache
+ # id: cache-yarn
+ # uses: actions/cache@v2
+ # with:
44
+ # path: "**/node_modules"
45
+ # key: yarn-build-${{ hashFiles('**/yarn.lock') }}
46
+ # restore-keys: |
47
+ # yarn-build-
48
49
- name: Install dependencies
50
# if: steps.cache-yarn.outputs.cache-hit != 'true'
0 commit comments