File tree Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -108,20 +108,21 @@ jobs:
108108 with :
109109 node-version : " 14"
110110
111- - name : Fetch dependencies from cache
112- id : cache-yarn
113- uses : actions/cache@v2
114- with :
115- path : |
116- "**/node_modules"
117- "**/vendor/modules"
118- "**/vendor/modules/code-oss-dev/node_modules"
119- key : yarn-build-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/vendor/yarn.lock') }}
120- restore-keys : |
121- yarn-build-
111+ # TODO@Teffen investigate why this omits code-oss-dev/node_modules
112+ # - name: Fetch dependencies from cache
113+ # id: cache-yarn
114+ # uses: actions/cache@v2
115+ # with:
116+ # path: |
117+ # "**/node_modules"
118+ # "**/vendor/modules"
119+ # "**/vendor/modules/code-oss-dev/node_modules"
120+ # key: yarn-build-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/vendor/yarn.lock') }}
121+ # restore-keys: |
122+ # yarn-build-
122123
123124 - name : Install dependencies
124- if : steps.cache-yarn.outputs.cache-hit != 'true'
125+ # if: steps.cache-yarn.outputs.cache-hit != 'true'
125126 run : yarn --frozen-lockfile
126127
127128 - name : Build code-server
You can’t perform that action at this time.
0 commit comments