1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00: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