-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): temporarily disable install deps from cache
- Loading branch information
Showing
2 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,14 +33,18 @@ jobs: | |
- name: Install helm | ||
uses: azure/[email protected] | ||
|
||
- 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- | ||
# NOTE@jsjoeio | ||
# disabling this until we can audit the build process | ||
# and the usefulness of this step | ||
# See: https://github.com/cdr/code-server/issues/4287 | ||
# - 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- | ||
|
||
- name: Install dependencies | ||
# if: steps.cache-yarn.outputs.cache-hit != 'true' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters