consolidate node_modules cache

This commit is contained in:
Kyle Spearrin 2020-09-25 10:30:13 -04:00
parent afd501b985
commit 6433178175
1 changed files with 15 additions and 30 deletions

View File

@ -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