1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00

cache stuff

This commit is contained in:
Kyle Spearrin 2020-09-25 10:20:28 -04:00
parent 0bcb4c100a
commit 59cda84d07

View File

@ -56,6 +56,20 @@ jobs:
run: ./.github/scripts/load-version.ps1
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') }}
- name: Install Node dependencies
run: npm install
@ -119,6 +133,20 @@ jobs:
run: ./.github/scripts/load-version.ps1
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') }}
- name: Install Node dependencies
run: npm install
@ -209,6 +237,20 @@ jobs:
run: ./.github/scripts/load-version.ps1
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') }}
- name: Install Node dependencies
run: npm install