We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 699f78c commit d4dafd8Copy full SHA for d4dafd8
.github/workflows/ci.yaml
@@ -112,14 +112,16 @@ jobs:
112
id: cache-yarn
113
uses: actions/cache@v2
114
with:
115
- path: "**/node_modules"
116
- key: yarn-build-${{ hashFiles('**/yarn.lock') }}
+ path: |
+ "**/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-
122
123
- name: Install dependencies
- # TODO@Teffen investigate why this never matches the cache.
- # if: steps.cache-yarn.outputs.cache-hit != 'true'
124
+ if: steps.cache-yarn.outputs.cache-hit != 'true'
125
run: yarn --frozen-lockfile
126
127
- name: Build code-server
0 commit comments