mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
consolidate node_modules cache
This commit is contained in:
parent
afd501b985
commit
6433178175
45
.github/workflows/build.yml
vendored
45
.github/workflows/build.yml
vendored
@ -57,18 +57,13 @@ jobs:
|
||||
shell: pwsh
|
||||
|
||||
- name: Cache node_modules
|
||||
id: cache-node-modules
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node-modules-lin-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Cache electron-gyp
|
||||
id: cache-electron-gyp
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.electron-gyp
|
||||
key: electron-gyp-lin-${{ hashFiles('package-lock.json') }}
|
||||
path: |
|
||||
~/.npm
|
||||
~/.electron-gyp
|
||||
node_modules
|
||||
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Install Node dependencies
|
||||
run: npm install
|
||||
@ -134,18 +129,13 @@ jobs:
|
||||
shell: pwsh
|
||||
|
||||
- name: Cache node_modules
|
||||
id: cache-node-modules
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node-modules-win-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Cache electron-gyp
|
||||
id: cache-electron-gyp
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.electron-gyp
|
||||
key: electron-gyp-win-${{ hashFiles('package-lock.json') }}
|
||||
path: |
|
||||
~/.npm
|
||||
~/.electron-gyp
|
||||
node_modules
|
||||
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Install Node dependencies
|
||||
run: npm install
|
||||
@ -241,18 +231,13 @@ jobs:
|
||||
shell: pwsh
|
||||
|
||||
- name: Cache node_modules
|
||||
id: cache-node-modules
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node-modules-mac-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Cache electron-gyp
|
||||
id: cache-electron-gyp
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: ~/.electron-gyp
|
||||
key: electron-gyp-mac-${{ hashFiles('package-lock.json') }}
|
||||
path: |
|
||||
~/.npm
|
||||
~/.electron-gyp
|
||||
node_modules
|
||||
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
|
||||
|
||||
- name: Install Node dependencies
|
||||
run: npm install
|
||||
|
Loading…
Reference in New Issue
Block a user