We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8124121 commit 244aaf8Copy full SHA for 244aaf8
.github/workflows/ci.yaml
@@ -108,17 +108,17 @@ jobs:
108
with:
109
node-version: "14"
110
111
- - name: Fetch dependencies from cache
112
- id: cache-yarn
113
- uses: actions/cache@v2
114
- with:
115
- path: "**/node_modules"
116
- key: yarn-build-${{ hashFiles('**/yarn.lock') }}
117
- restore-keys: |
118
- yarn-build-
+ # - name: Fetch dependencies from cache
+ # id: cache-yarn
+ # uses: actions/cache@v2
+ # with:
+ # path: "**/node_modules"
+ # key: yarn-build-${{ hashFiles('**/yarn.lock') }}
+ # restore-keys: |
+ # yarn-build-
119
120
- name: Install dependencies
121
- if: steps.cache-yarn.outputs.cache-hit != 'true'
+ # if: steps.cache-yarn.outputs.cache-hit != 'true'
122
run: yarn --frozen-lockfile
123
124
- name: Build code-server
0 commit comments