Skip to content

Commit 44a4ae5

Browse files
committed
Disable CI caching during build.
1 parent 565dbec commit 44a4ae5

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/ci.yaml

+13-12
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)