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