Archived
1
0

refactor: use own cache key build code-server job

This commit is contained in:
Joe Previte 2022-12-19 14:35:25 -07:00
parent 0aecf9e108
commit d00ab199f4
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -170,9 +170,9 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: "**/node_modules" path: "**/node_modules"
key: yarn-build-${{ hashFiles('**/yarn.lock') }} key: yarn-build-code-server-${{ hashFiles('**/yarn.lock') }}
restore-keys: | restore-keys: |
yarn-build- yarn-build-code-server-
- name: Install dependencies - name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true' if: steps.cache-node-modules.outputs.cache-hit != 'true'